Remove index.php Codeigniter
Create a .htaccess file in the root directory of your hosting. Then write the following code to this .htaccess file and save it.
RewriteEngine on
RewriteCond $1 !^(index\.php|system|user_guide|robots\.txt)
RewriteRule ^(.+)$ /codeigniter/index.php?$1 [L]
Now open the file named config.php from /application/config directory
Find the line $config['index_page'] = 'index.php';
Turn this line to $config['index_page'] = '';
That's all. Now call your controller with the site name.
Comments
Post a Comment