I\'m currently developing a website using CodeIgniter and I recently stumbled upon a routing & .htaccess problem.
Basically, the structure of my simple website (
In your system/application/config/config.php, Change
system/application/config/config.php
$config['index_page'] = "index.php";
To
$config['index_page'] = "";
And in your .htaccess,add this:
RewriteEngine on RewriteCond $1 !^(index\.php|images|stylesheets|scripts|robots\.txt) RewriteRule ^(.*)$ /index.php/$1 [L]