• I just installed this plugin called Permalinks Migration. I’m finding out the redirection is not working for some of my posts. How do I get it to work on all posts?

Viewing 1 replies (of 1 total)
  • Hi,

    Disable permalink migration plugin and reset your permalink from wordpress admin area. Now, 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 blog posts and pages.

    Thanks,

    Shane G.

Viewing 1 replies (of 1 total)
  • The topic ‘Permalinks Migration Not Working’ is closed to new replies.