Answers for "htaccess to hide php extension"

PHP
0

how to hide .php extension using .htaccess

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

Code answers related to "htaccess to hide php extension"

Browse Popular Code Answers by Language