I try to use ModRewrite on my Localhost but basically nothing happens. (Yes, everything in the httpd.conf is set right)
My Dir structure is:
htdocs/project/ this dir contains all files, also the .htaccess
I want to make
127.0.0.1/project/navigation.php to 127.0.0.1/project/navigation.htm
so I've tried this:
RewriteEngine on
RewriteBase /
RewriteRule ^(.*)\.htm$ $1.php [L,R=301]
The navigation.php but when visiting the page a 'rename' to navigation.htm should happen but nothing happens
Someone an idea why?