[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