• I’m trying to change my permalinks and no matter what I select I get an error 400 – Bad Request.

    I have changed my .htaccess file permission to 666 and it still gives the same error.

Viewing 1 replies (of 1 total)
  • Hi,

    As you have modified permalinks…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 ‘Permalink’ is closed to new replies.