• Each time I add a page, the links don’t work in the navigation. Once the link is clicked, it sends me to this page that reads:

    Not Found

    The requested URL /team was not found on this server.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8k DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at https://www.rumorboardshop.com Port 80

    The website is: https://www.rumorboardshop.com

    Any help would be great.
    Thanks in advance!

Viewing 1 replies (of 1 total)
  • Hi,

    Try to add this code in htaccess and have a check:

    # BEGIN WordPress

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

    # END WordPress

    Thanks,

    Shane G.

Viewing 1 replies (of 1 total)
  • The topic ‘pages not loading’ is closed to new replies.