admin管理员组

文章数量:1133918

I'm looking for the best way to bulk redirect for modified taxonomy URLs.

After category slug has been changed, I need to perform a redirect for all paginated pages:

/category-old/       redirects to /category-new/
/category-old/page/2 redirects to /category-new/page/2

This post recommends using an .htaccess file:

RewriteEngine on
RewriteRule ^/category-old/(.*)$ /category-new/$1 [R=301,L]

This works, but I would like to do redirect using a wordpress tools, because it's easier to keep track of all changes and you don't have to write many lines of code in the file and etc.

Maybe there are some plugins where you can set mass redirect for categories, tags and their pagination pages with a some simple setting?

本文标签: taxonomyBulk 301 redirect for Taxonomies with pagination