Answers for "remove .html and .php from url htaccess"

PHP
4

rewrite .php to no extension

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
Posted by: Guest on September-09-2020

Code answers related to "remove .html and .php from url htaccess"

Browse Popular Code Answers by Language