Welcome Guest, Not a member yet? Register   Sign In
CI or Apache
#2

[eluser]Phil Sturgeon[/eluser]
Use a better .htaccess:

Quote:<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /findxl/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
# If we don't have mod_rewrite installed, all 404's
# can be sent to index.php, and everything works as normal.
# Submitted by: ElliotHaughin

ErrorDocument 404 /index.php
</IfModule>

Failing that use the more simple part of it:

[quote]RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /findxl/index.php/$1 [L][/code]

OR just take it out of the sub-folder.
OR just take it out of the sub-domain. Other than h


Messages In This Thread
CI or Apache - by El Forum - 02-21-2008, 04:56 AM
CI or Apache - by El Forum - 02-21-2008, 05:50 AM



Theme © iAndrew 2016 - Forum software by © MyBB