CodeIgniter URL routing doesn't work CodeIgniter URL routing doesn't work codeigniter codeigniter

CodeIgniter URL routing doesn't work


This seems to be one of the question should have been looking for - How to remove "index.php" in codeigniter's path

And there is another config that you need to edit:

$config['uri_protocol'] = 'AUTO';

Change the line written above to the following:

$config['uri_protocol'] = 'REQUEST_URI';

If you have done all of this, there still might be one issue left - enable mod_rewrite


MAKE sure you have AllowOverride All set up in the /etc/httpd/conf/httpd.conf (centos apache 2.2)

config:

$config['index_page'] = '';