Welcome Guest, Not a member yet? Register   Sign In
Remove index.php without setting $config['index_page'] to empty string [SOLVED]
#7

[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. :\


Messages In This Thread
Remove index.php without setting $config['index_page'] to empty string [SOLVED] - by El Forum - 08-04-2010, 10:52 AM



Theme © iAndrew 2016 - Forum software by © MyBB