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
Make sure you mod_rewrite enabled (check through phpinfo that is enable or not).
For enable mod_rewrite check following
And add this .htacess
where to add
RewriteEngine on
RewriteCond $1 !^(index.php|resources|robots.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
in your root folder