Answers for "how to remove index.php in codeigniter 3 route"

PHP
0

how to remove index.php in codeigniter 3 route

step 1: create .htaccess file under root directory

step 2: on .htaccess file add this 

RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
  
step 3: on config file change this  $config['index_page'] = 'index_page'; 
		to $config['index_page'] = '';
Posted by: Guest on March-23-2022

Code answers related to "how to remove index.php in codeigniter 3 route"

Browse Popular Code Answers by Language