Answers for ".htaccess file remove index.php"

0

Remove .php htaccess

RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule !.*.php$ %{REQUEST_FILENAME}.php [QSA,L]
Posted by: Guest on August-07-2021
0

remove index.php from url htaccess

RewriteCond %{THE_REQUEST} ^GET.*index.php [NC]

RewriteRule (.*?)index.php/*(.*) /$1$2 [R=301,NE,L]
Posted by: Guest on July-15-2021

Code answers related to ".htaccess file remove index.php"

Browse Popular Code Answers by Language