Quote:
Originally Posted by sankou
Thanks for the reply. This does remove the extension, however it doesn't go to the right page. If I type http://www.mysite.com/about it shows that as the url but goes to the index page instead of the about page.
|
My apologies!
I *think* this will work.
Code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /*.php?$1 [QSA]
If that doesn't work, try this:
Code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ *.php?$1 [QSA]
I am just learning how to play with htaccess, so sorry if none of this works.