Small code for PHP 301 jump
Copy code The code is as follows:
$the_host = $_SERVER['HTTP_HOST'];
$request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';
if($the_host !== 'www.jb51.net')
{
//echo $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
header('HTTP/1.1 301 Moved Permanently');
header('Location: http://www .jb51.net' . $_SERVER['PHP_SELF'] . $request_uri);
}
?>
http://www.bkjia.com/PHPjc/825209.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/825209.htmlTechArticleThe small code copy code for PHP 301 jump is as follows: ?php $the_host = $_SERVER['HTTP_HOST'] ; $request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : ''; if($the_h...
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn