将旧的Wordpress帖子重定向到新的URL

时间:2010-08-24 02:36:58

标签: wordpress .htaccess

我假设我必须使用.htaccess,但是如何告诉我的旧网站http://oldsite.com/post-slug自动将任何“post-slug”重定向到http://newsite.com/post-slug

1 个答案:

答案 0 :(得分:3)

在旧页面上将以下内容添加到.htaccess:

RewriteEngine On
RewriteRule (.*)$ http://newsite.com/$1 [QSA,NC,R=301]

这会将包含页面名称在内的每个链接重定向到新域。标志还将发送附加参数并使URL不区分大小写。 R = 301将告诉搜索引擎,它是一个永久重定向,因此他们可以更快地更新这些索引。