如何運用php根據網址域名來路判斷跳轉呢?
這裡搜集下相關代碼:
1、 問題要求:
根據來路分別跳轉
根據輸入域名跳轉不同頁面
PS:前提是不使用域名解析中的 URL轉發!
實例: 訪客輸入:www.123.com 訪問根目錄下 index.html訪客輸入:www.abc.com 訪問根目錄下 main.html
可在原默認主頁代碼前加上如下判斷語句
<?php
$sUrl = $_SERVER['SERVER_NAME'];
if ($sUrl=="www.123.com"){
echo '<meta http-equiv="refresh" content="0; url=http://www.123.com/index.html">';
}
if ($sUrl=="www.abc.com"){
echo '<meta http-equiv="refresh" content="0; url=http://www.abc.com/main.html">';
}
?>
可根據自己實際要求來靈活變化語句!
*