Answers for "htaccess route to index.php"

0

htaccess route to index.php

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ /index.php [L,QSA]


Using Sub directory:
RewriteRule ^.*$ /mvc/index.php [L,QSA]
Posted by: Guest on June-15-2020

Code answers related to "htaccess route to index.php"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language