• I have changed my permalinks to be /%postname%/

    However when I go to the site the post names are not showing – just the domain name. I can see the new pretty urls in the edit url at the top of the edit window and can click through to it from there. But then when I click through the nav bar that url stays and doesn’t change.

    If I come onto the site fresh it just has the domain name and not /postname suffix. Any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Post a link to your site.

    Does disabling all your plugins and switching to the default theme make things work?

    Hi,

    Reset your permalink from wordpress admin area and save it. After that remove wordpress rewrite rule from htaccess of your blog/site and add this code in that 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

    Now, check with your blog posts and pages.

    Thanks,

    Shane G.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Permalink URL’s not showing’ is closed to new replies.