Answers for "when hit with then remove .php from url in codeingator"

PHP
-1

remove index.php in codeigniter

RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
Posted by: Guest on June-21-2020

Browse Popular Code Answers by Language