2011-12-24 4 views

답변

2

당신은 어느 PHP와 (매우 검색 엔진 친화적 인) 그 좋은 오래된 HTTP를 사용할 수 있습니다 동일하게 작동이 같은 (와

<?php 
    header("HTTP/1.1 301 Moved Permanently"); 
    header("Location: http://www.xyz.com/jq.php?href=http://www.abc.com/xyz"); 

또는 htaccess로를 통해

, 방법, 나는) 생각 :

## redirect index.php to the new domain 
Redirect 301 /index.php http://www.xyz.com/jq.php?href=http://www.abc.com/xyz 

또는 같은 것을 (당신이 아파치에이고있는 경우 mod_rewrite를 사용) :

RewriteEngine on 
## redirect everything to the new domain: 
RewriteRule (.*) http://www.xyz.com/jq.php?href=http://www.abc.com/xyz/$1 [R=301,L]