php处理二级域名以及域名跳转

        PHP处理二级域名已经域名跳转:

  
  
  
  
  1. <?php  
  2.  
  3. switch ($_SERVER["HTTP_HOST"])  
  4.  
  5. {  
  6.  
  7. case "www.luxiaok.com":  
  8. header("location:index.html");  
  9. break;  
  10.  
  11. case "www.luxiaok.tk":  
  12. header("location:index0.php");  
  13. break;  
  14.  
  15. case "sina.luxiaok.tk":  
  16. header("location:http://blog.sina.com.cn/ksir");  
  17. break;  
  18.  
  19. default:  
  20. header("location:index0.php");   
  21. break;  
  22.  
  23. }  
  24. ?> 

 

你可能感兴趣的:(PHP)