Support » Fixing WordPress » postname Permalink and Migrated Posts

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    Reset your desired permalink from wordpress admin area 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

    After that have a check with posts and pages of your blog.

    Thanks,

    Shane G.

    Thread Starter mrbluesummers

    (@mrbluesummers)

    Hey Shane,

    Thanks for the reply! I’ve checked that code against my htaccess file and it appears that that was already what was in there (minus the ErrorDocument 404 line). Even with that included, the issue remains. =\

    Thread Starter mrbluesummers

    (@mrbluesummers)

    Anything else I could try?

    Thread Starter mrbluesummers

    (@mrbluesummers)

    Is this stored in the meta table? What if I just delete all of those entries?

    Thread Starter mrbluesummers

    (@mrbluesummers)

    Could still use some advice on this…

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘postname Permalink and Migrated Posts’ is closed to new replies.