Answers for "index.php in codeigniter"

PHP
3

index.php in codeigniter

<?php 
#By default, the index.php file will be included in your URLs:
  
# Create a .htaccess file in your root folder and paste the below code 
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
?>
Posted by: Guest on June-15-2020
-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

Code answers related to "index.php in codeigniter"

Browse Popular Code Answers by Language