• Resolved boblan66

    (@boblan66)


    When logged in to the home page of my blog, I attempt to click on the ‘Generic’ (which is my default category) located on the top horizontal menu bar. Upon clicking on the tab I receive the following error message:

    Forbidden

    You don’t have permission to access /BLOG/http:/articleworld-usa/BLOG/category/generic/ on this server.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8i DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at articleworld-usa.com Port 80

    I have created new categories and subcategories. The only category that shows up in the category widget is the default.

    I would appreciate any assistance you might have.

Viewing 1 replies (of 1 total)
  • Hi,

    Add this code in htaccess of your blog/site 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
    <IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>

    If these does not work then disable all the plugins and have a check.

    Thanks,

    Shane G.

Viewing 1 replies (of 1 total)
  • The topic ‘Access Error’ is closed to new replies.