Quote:
Originally Posted by EBORG9
I have this in my .htacess file:
|
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
ErrorDocument 404 http://www.domain.com/404.html
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>