我在.org
域上有网站。现在,我将它移到.com
。
例如,我有产品页面,该用户保存在浏览器test.org/item.php?id=944
中。用户返回该页面后,我想将他移至test.com/item.php?id=944
我应该使用重定向保存旧网站结构吗?
答案 0 :(得分:1)
使用.htaccess文件执行301重定向(永久移动状态代码):
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(.*)test.org [NC]
RewriteRule ^(.*)$ http://test.com/$1 [R=301,L]