程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP跳轉代碼的實現方法講解

PHP跳轉代碼的實現方法講解

編輯:關於PHP編程

PHP跳轉代碼默認文檔設置1 :

  1. < ?php   
  2. switch ($_SERVER["HTTP_HOST"])   
  3. {   
  4. case "www.a.com":   
  5. header("location:a/index.php");   
  6. break;   
  7. case "www.b.com":   
  8. header("location:b/index.php");   
  9. break;   
  10. case "www.c.com":   
  11. header("location:c/index.php");   
  12. break;   
  13. }   
  14. ?>   


PHP跳轉代碼默認文檔設置2 :
 

  1. < ?php  
  2. $HTTP_HOST=$_SERVER['HTTP_HOST'];   
  3. if(($HTTP_HOST=="a.com")or
    ($HTTP_HOST=="www.a.com"))  
  4. {Header("Location:/index.html"); }  
  5. elseif(($HTTP_HOST=="b.net")or
    ($HTTP_HOST=="www.b.net"))  
  6. {Header("Location: /kangbite/"); }  
  7. elseif(($HTTP_HOST=="c.com")or
    ($HTTP_HOST=="www.c.com"))  
  8. {Header("Location: /c/"); }  
  9. else  
  10. {}  
  11. ?>   

以上就是PHP跳轉代碼的具體代碼實現方法。


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved