We can easily remove index.php from url in codeigniter with the help of htaccess file. We only need to place the below code in htaccess file.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
Then find the following line in your application/config/config.php file
$config['index_page'] = 'index.php';
Remove index.php from above line and keep it as blank like this given below.
$config['index_page'] = '';
0 Comment(s)