3

我一直在寻找,但不能完全找到我正在寻找的东西,所以就到这里了。

我有一个相当大的博客,并且想将帖子从特定类别移动到新域,并且需要旧 URL 才能将该类别重定向到新域。

例如,我有“论文”类别,我计划从该类别中的 Wordpress 导出所有帖子,并将它们导入到我在新域上的新站点。所以我想要:

www.currenthome.com/paper/post-name-here

重定向到

www.newhome.com/paper/post-name-here

我有超过 900 个帖子需要指导。

为了清楚起见,我只有一个特定类别的帖子被重定向。当前站点上的其余帖子不应受到影响。

任何帮助都感激不尽!

4

1 回答 1

1

currenthome您可以在 WP 规则集下方的根 .htaccess 文件中尝试此操作:

Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST}  (?:www\.)?currenthome\.com  [NC]
RewriteCond %{REQUEST_URI}  ^/paper/([^/]+)/?      [NC]
RewriteRule .*   http://www.newhome.com/paper/%1   [R=301,L]

永久重定向:

http://www.currenthome.com/paper/post-name-here 或者

http://currenthome.com/paper/post-name-here 带或不带斜杠。

至:

http://www.newhome.com/paper/post-name-here

对于静默映射,请R=301[R=301,L].

于 2013-02-09T04:34:10.797 回答