• kmp2000

    (@kmp2000)


    Hi,

    my site is using WP 4.4.2 with The7.

    A couple of days ago I changed the permalink for posts to a custom setting: xxxxxx.com.au/blog/2015/12/27/sample-post

    After this I cannot edit any posts, pages or settings in the backend.

    I can access the backend, but always get 404 error pages when trying to edit certain posts, pages or settings. Have to try several times to access the page that I need to edit.

    I have checked the .htaccess file on the site for permalink settings. It is below.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    Any solution would help.

    Thanks.

Viewing 1 replies (of 1 total)
  • Digico Paris

    (@digico-paris)

    Hello,

    Well chek this 2 things please:

    1)

    in dashboard of your WP site > reading >

    should mirror this aka xxxx.com/au/blog

    2) in .htaccess file of web root it misses many parts

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\blog\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . blog/index.php [L]
    </IfModule>

    That should work better, but, again I don’t know what is the root of your web server, so, all is related to the real root of your server (aka if you type, xxxx.au.com in your browser, this is your root folder).

    Hope it helps,

Viewing 1 replies (of 1 total)
  • The topic ‘404 error page after permalink change’ is closed to new replies.