Answers for "hide php extention in .htaccess"

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 "hide php extention in .htaccess"

Browse Popular Code Answers by Language