How to remove index.php from url in CodeIgniter 3
Adding below code in htaccess file we can remove index.php from codeigniter URL
1. We have to make below changes in application/config/config.php
$config['index_page'] = '';
2. We have to add below code block in .htaccess file in root of the codeigniter project
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

Comments
Post a Comment