Apache – remove .php permanently from url
I want to remove .php extension from my url, so I edited .htaccess to add this code RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^.]+)$ $1.php [NC,L] And the code works fine but only when I intentionally remove .php from the…