Forum Moderators: phranque
ErrorDocument 401 /401.html
ErrorDocument 403 /401.html
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
[edited by: jdMorgan at 8:29 pm (utc) on April 10, 2008]
[edit reason] Code formatting [/edit]
You can watch the redirect by using the "Live HTTP Headers" add-on for Firefox and Mozilla-based browsers to find out if it is a 301 or 302 redirect. This might be handy to know while tracking down the problem.
Jim