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

前端之家收集整理的这篇文章主要介绍了php用header函数实现301跳转代码实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

PHP 301跳转的小代码

代码如下:
PHP
$the_host = $_SERVER['HTTP_HOST'];
$request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';
if($the_host !== 'www.jb51.cc')
{
//echo $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
header('HTTP/1.1 301 Moved Permanently');
header('Location: . $_SERVER['PHP_SELF'] . $request_uri);
}
?>

原文链接:https://www.f2er.com/php/25417.html

猜你在找的PHP相关文章