ホームページ > 記事 > ウェブフロントエンド > 複数の中国語の実装により、顧客がアクセスに使用するドメイン名が決定され、対応するディレクトリに移動します_エクスペリエンス交換
複数中国語の実装は、顧客がアクセスに使用するドメイン名を決定し、対応するディレクトリに移動します。
ASP バージョン:
複数のドメイン名をバインドする複数の ASP コードを公開します。
ASP スペースがあり、複数のサイトを配置したい場合は、これらのコードが役に立ちます。
まず
response.redirect "bbs"
else
response.redirect "index1.htm"
end if%>
2 番目の
case "www.along.com.ru" '1
Server.Transfer("along.htm")
case "www.along.net .ru" '2 Server.Transfer("net.htm")
case "www.null.com.ru" '3
Server.Transfer("null.htm")
. ..... 続行追加するには...
end select
%>
3番目の
("SERVER_NAME" ),"fjsky.info")>0 then
response.redirect "index.asp"
else if instr(Request.ServerVariables
("SERVER_NAME"),"along.com.ru")>0 then
response.redirect "x/ index.asp"
else if instr(Request.ServerVariables
("SERVER_NAME"),"along.net.ru")>0 thenr
esponse.redirect "index3 .asp"
end if end if
end if%>
4 番目の
response.redirect "main1. asp"
else if Request.ServerVariables("SERVER_NAME")="fjsky.info" then
response.redirect "main1.asp"
else if Request.ServerVariables("SERVER_NAME")="www. null2.com.ru" then
response.redirect "/web/index.asp"
else if Request.ServerVariables("SERVER_NAME")="null2.com .ru" then
response.redirect " /web/index.asp"
end if
end if
end if
end if%>
5 番目'HTTP 入力値を取得しますそれを HTOST に支払います
host=lcase(request.servervariables("HTTP_HOST"))
'条件付きジャンプの開始
SELECT CASE host
' HOST の値が www.iswind.net の場合、イベントのコマンドを選択します。 case "www.iswind.net"
CASE "www.abc.net"
' 以下はリダイレクト コマンドです。
response .redirect "web/"
CASE "www. efd.com"
response.redirect "web1/"
'他のリクエストを修正するには CASE ELSE を使用します
CASE ELSE
response.redirect "web1/"
END SELECT
%>
js バージョン:
<script> <br>試してください <br>{ if( self.location == "http://corn一/" ) <br>{ <br>top.location .href = "http://corn一/ ディレクトリ"; <br>} <br>else if( self.location == "http://corn二/" ) <br>{ <br>top.location.href = "http://corn二/ ディレクトリ"; <br>} <br>else if( self.location == "http://トウモロコシ三/" ) <br>{ <br>top.location.href = "http://トウモロコシ三/catalogue"; <br>} <br>else if( self.location = = "http://corn四/" ) <br>{ <br>top.location.href = "http://corn四/ ディレクトリ"; <br>} <br>else <br>{ document.write (「アクセスアドレスが間違っています」) } <br>} <br>catch(e) { } <br></script>
case "domain.com": header("location:blog");
break;
デフォルト:
header("location:news");
break;
}
?>
または
$domain_net="yeahe.com";
$dot_net_url="bbs/";
$dot_com_url="flash";
の場合(($HTTP_HOST=="$domain_net")or($HTTP_HOST=="www.$domain_net"))
{
Header("Location: $dot_net_url");
}
else
{
Header("Location: $dot_com_url");
}
?>