一个站点和几个域。如何设置重定向?

时间:2011-03-24 21:30:16

标签: php

我在.org域上有网站。现在,我将它移到.com。 例如,我有产品页面,该用户保存在浏览器test.org/item.php?id=944中。用户返回该页面后,我想将他移至test.com/item.php?id=944 我应该使用重定向保存旧网站结构吗?

1 个答案:

答案 0 :(得分:1)

使用.htaccess文件执行301重定向(永久移动状态代码):

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(.*)test.org [NC]
RewriteRule ^(.*)$ http://test.com/$1 [R=301,L]