php301跳轉

<?php
$the_host = $_SERVER['HTTP_HOST'];//取得當前域名
$the_url = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';//判斷地址後面部分
$the_url = strtolower($the_url);//將英文字母轉成小寫

if($the_url=="/index.php")//判斷是不是首頁
{
    $the_url="";//如果是首頁,賦值爲空
}
if($the_host == 'www.baidu.com')
{
    header('HTTP/1.1 301 Moved Permanently');//發出301頭部
    header('Location:http://www.taobao.com'.$the_url);//跳轉到帶www的網址
}


?>

發佈了51 篇原創文章 · 獲贊 15 · 訪問量 11萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章