根据要重定向的单个帖子的数量,您可以将一个。htaccess文件到301会专门重定向“最大点击数”,然后将所有其他内容发送到新的域根目录。
Options +FollowSymLinks
RewriteEngine on
# redirect specific posts
RewriteRule ^old/post/$ http://www.newdomain.com/new/post/ [R=301,L]
RewriteRule ^some/other/post/$ http://www.newdomain.com/another/new/post/ [R=301,L]
# etc..
# redirect everything else that didn\'t match above
RewriteRule (.*) http://www.newdomain.com/ [R=301,L]