• I have a local installation and published a bad custom permalink on one of my pages. Now I get a Error 500 when I try to access the site. Any suggestions on how to repair?

Viewing 1 replies (of 1 total)
  • Hi,

    Check with these options:

    -> Disable all the plugins and enable it one by one to find out the culprit.
    -> Upgrade your wordpress to the latest version
    -> Remove all unwanted code from htaccess and add this code in htaccess:

    # 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 ‘Published bad permalink – receiving Error 500’ is closed to new replies.