[eluser]bretticus[/eluser]
You might try adding a ? to your rewrite:
Code:
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
By default, uri_protocol is set to "auto" in config.php:
Code:
$config['uri_protocol'] = "AUTO";
So it works differently on different hosts and configurations. :\