• voddie

    (@voddie)


    Hi

    My theme has a custom 404 page and it works great, unfortunately I also have links to pages outside of WP, like my newsletter archives etc.

    How do I set up so that it allows the link to pass through to the page without generating a 404?

    Can this be acheived using my .htaccess?

    My .htaccess

    Options +FollowSymlinks
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

  • The topic ‘404s on pages outside WP’ is closed to new replies.