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 

またはこの(あなたは、Apacheにしているとの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] 
関連する問題