I have the following problem with CodeIgniter. I\'m trying to setup a menu, and using route config to load the proper content but from some reason it\'s not working.
I h
I think a .htaccess file is missing. Create a new file with this content and save it in the CI root.
RewriteEngine on
RewriteBase /new/CodeIgniter
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]