Possible Duplicate:
Remove .php extension with .htaccess
I’m trying to hide the .php file extension but for some reason can’t get it to work. My latest attempt was the following:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^folder/([a-zA-Z_\-0-9]+)/?$ /folder/$1.php
</IfModule>
I have tried many different variances of code I have found online but still no luck. The .htaccess file is placed within the root directory.
I’ve used this:
See also: this question