Php的301重定向代码

Php的301重定向代码

by GlobeTour

Posted in 编程开发, php, seo

  • Add comments (2)
  • |
  • Permanent link

一:更推荐这种方法,因为它可以把www.fend.cn原来所有的url都转到fend.cn新的地址上

view plain copy to clipboard print ?
  1. <?php  
  2. $the_host = $_SERVER['HTTP_HOST'];  
  3. $request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';  
  4. if($the_host == 'www.fend.cn')  
  5. {  
  6. header('HTTP/1.1 301 Moved Permanently');  
  7. header('Location: http://fend.cn'.$request_uri);//  
  8. }  
  9. ?>  

二:单页多站的Php301重定向代码,www.fend.cn和fend.cn则301到index.php上,www.fend.cn则301到fend.cn上,否则转到错误页

view plain copy to clipboard print ?
  1. <?php  
  2. if(($HTTP_HOST=="www.fend.cn")or($HTTP_HOST=="fend.cn"))  
  3. {  
  4. header("HTTP/1.1 301 Moved Permanently");  
  5. Header("Location: /index.php");  
  6. }  
  7. elseif($HTTP_HOST=="www.fend.cn")  
  8. {  
  9. header("HTTP/1.1 301 Moved Permanently");  
  10. Header("Location: http://fend.cn");  
  11. }  
  12. else  
  13. {  
  14. Header("Location: /404.htm");  
  15. }  
  16. ?>  

你可能感兴趣的:(重定向)