我想将Wordpress移动到另一个域并更改永久链接。基本上我想要的是从oldsite.com/PostId-PostName.html迁移到newsite.com/PostName /
我知道这可以从.htaccess完成,但我无法做到正确。你能帮我吗?
答案 0 :(得分:1)
有一篇专门针对此的法典文章:Moving WordPress
答案 1 :(得分:1)
使用Apache的mod_rewrite:
可以做到这一点# Activate Rewrite Engine
RewriteEngine On
# redirect posts to new site
RewriteRule ^(\d+)-([^/]+)\.html http://www.newsite.com/$2/ [R=301,NC,QSA,L]
这只会重定向oldsite.com/12345-very-interesting-post.html
等网址。