// ----------------------------------------------------------------------------------------------//
RSS

How to Remove Index.php in CODEIGNITER FRAMEWORK

Steps to remove index.php from url codeigniter :-

Config changes :- Go to “application/config/config.php”
Find below code:-
1
$config['index_page'] = 'index.php';
Replace with the below code:-
1
$config['index_page'] = '';
.htaccess changes :- If you not have any htaccess create new and place it on your root.
Go to “application/config/config.php”
Find below code
1
$config['uri_protocol'] = 'AUTO';
Replace with the below code
1
$config['uri_protocol'] = 'REQUEST_URI';
create .htaccess file and save it from '.htaccess' 

RewriteEngine on
RewriteBase /harshit_ci/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

0 comments: