Quote:
Originally Posted by CYF
... Also going to /admin is supposed to open the admin area but once again, it opens the main index.php.
|
What happens when you comment out
Code:
ErrorDocument 404 /index.php
?
Do you get a 404 error page?
Is the script in a site root, or in a directory?
If your script is in a directory you could try putting the directory name in front of the /index.php like so:
Code:
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /coupondir/index.php/$1 [L]
Not sure if it will work, hope it helps though.