I am working on a client’s site who has a GoDaddy DELUXE Hosting account, and I started having problems that my previous post on “GoDaddy + CodeIgniter Issues” did not resolve (shared hosting account… not deluxe).

The solution this time was to use…

[php]$config[‘uri_protocol’] = “REQUEST_URI”;[/php]

in the config.php file, and the following in my .htaccess file.

[php]Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [QSA,L][/php]

Thanks to the good folks in the CodeIgniter forums for this solution!!