Ubuntu 14.04LTS 32bit
LAMP
I know it\'s an old question but..
I need it to remove .php anywhere it finds it from the visible url. It needs to work wi
You can try the following.
RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^(.+?)/?$ $1.php$2 [L]