CI and HTACCESS Woes
In ci/application/config/config.php (Line 44), try setting…
$config[’uri_protocol’] = “REQUEST_URI”;
The thing to be looking at here is the REQUEST_URI part. There are several others to choose from as follows:
AUTO
PATH_INFO
QUERY_STRING
REQUEST_URI
ORIG_PATH_INFO
The following should be placed in the .htaccess file located at the root of the public directory (public_html/.htaccess, htdocs/.htaccess, etc)…
<IfModule mod_rewrite.c>
RewriteEngine On
[…]








