Search code examples
.htaccessmod-rewrite

Design in mod_reqrite a rule from directory to file


I try to define following rewrite rule:

The user should enter a url to a directory like: www.url.com/voucher But the real url should be: www.url.com/voucher.php And the user should only see the first url - never the second.

Any ideas? Thank you.


Solution

  • Try with this in .htaccess after RewriteEngine on line:

    RewriteRule ^voucher /voucher.php