• Resolved biffta

    (@biffta)


    Hey! My htaccess access file works fine with the exception of dealing with 404s. It seems when you enter a 404 url into my site it automatically redirects you to my homepage. I would not like this to be the case, I would prefer an error page, but I cannot determine which part of the htaccess is responsible for doing this?

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Default page for 404s’ is closed to new replies.