Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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]
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #htaccess #route
ADD COMMENT
Topic
Name
4+3 =