php用header函数实现301跳转 php用header函数实现301跳转代码实例
人气:0想了解php用header函数实现301跳转代码实例的相关内容吗,在本文为您仔细讲解php用header函数实现301跳转的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:php,header函数,301跳转,下面大家一起来学习吧。
PHP 301跳转的小代码
复制代码 代码如下:
<?php
$the_host = $_SERVER['HTTP_HOST'];
$request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';
if($the_host !== 'www.qb5200.com')
{
//echo $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
header('HTTP/1.1 301 Moved Permanently');
header('Location: https://m.qb5200.com/www.qb5200.com' . $_SERVER['PHP_SELF'] . $request_uri);
}
?>
加载全部内容