Yes, I\'ve read the Apache manual and searched here. For some reason I simply cannot get this to work. The closest I\'ve come is having it remove the extension, but it point
If you're coding in PHP and want to remove .php so you can have a URL like:
http://yourdomain.com/blah -> which points to /blah.php
This is all you need:
RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]