Welcome Guest, Not a member yet? Register   Sign In
.htaccess / apache problem in URI routing?
#8

[eluser]SitesByJoe[/eluser]
I concur that it's your mod_rewrite. Here's what I use.

Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|public|tmp|robots\.txt)
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

Almost the same, but the order of the lines does make a difference - I run the file checks first.


Messages In This Thread
.htaccess / apache problem in URI routing? - by El Forum - 02-03-2009, 09:10 PM
.htaccess / apache problem in URI routing? - by El Forum - 02-04-2009, 06:00 PM
.htaccess / apache problem in URI routing? - by El Forum - 02-16-2009, 06:34 AM
.htaccess / apache problem in URI routing? - by El Forum - 02-16-2009, 10:48 PM
.htaccess / apache problem in URI routing? - by El Forum - 02-17-2009, 02:45 AM
.htaccess / apache problem in URI routing? - by El Forum - 02-17-2009, 03:06 AM
.htaccess / apache problem in URI routing? - by El Forum - 02-17-2009, 12:15 PM
.htaccess / apache problem in URI routing? - by El Forum - 02-17-2009, 02:49 PM
.htaccess / apache problem in URI routing? - by El Forum - 02-17-2009, 04:44 PM



Theme © iAndrew 2016 - Forum software by © MyBB