当前位置:首页 > PHP教程 > php应用 > 列表

php用header函数实现301跳转代码实例

发布:smiling 来源: PHP粉丝网  添加日期:2020-07-02 16:12:32 浏览: 评论:0 

分享一个php 301跳转的代码,很简单,主要是用header函数实现转,大家可以参考使用。

PHP 301跳转的小代码:

  1. <?php    
  2.  $the_host = $_SERVER['HTTP_HOST']; 
  3.  $request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : ''
  4.  if($the_host !== 'www.jb51.net'
  5.  { 
  6.      //echo $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']; 
  7.     header('HTTP/1.1 301 Moved Permanently'); 
  8.     header('Location: https://www.phpfensi.com' . $_SERVER['PHP_SELF']  . $request_uri); 
  9.  } 
  10. ?> 

Tags: php跳转 header函数

分享到: