Wordpress:如何在更改永久链接后重定向旧链接?

时间:2013-02-18 23:58:29

标签: wordpress .htaccess redirect permalinks

wp old permalinks:

/%类别%/%postname%/

我改为:(新永久链接)

/%postname%/

更改永久链接后如何重定向旧链接?用HTACCESS?

感谢

2 个答案:

答案 0 :(得分:0)

你的htaccess中的这些行应该处理它:

RewriteEngine On
RewriteRule ^(?:[\w|\-]*)/(.*)$ http://example.com/$1 [R=301,L]

答案 1 :(得分:-2)

大多数情况下,wordpress会记住您的固定链接更改,它会将流量从旧网址重定向到新网址

相关问题