我有一个wordpress网站,我想将永久链接结构从帖子ID更改为帖子名称。我已经有100个帖子,并且不想破坏旧链接,因此我想重定向它们而不会出现错误404。 预先感谢
答案 0 :(得分:0)
使用.htaccess
重定向链接。或者,您可以使用Redirection Plugin来这样做。
示例:.htaccess
重定向
Redirect 301 /oldpage1.html http://www.yoursite.com/newpage1.html
Redirect 301 /oldpage2.html http://www.yoursite.com/newpage2.html
Redirect 301 /oldpage3.html http://www.yoursite.com/newpage3.html
.
.
.
.
Redirect 301 /oldpage500.html http://www.yoursite.com/newpage500.html
使用相同的代码行为。