php程序实现301重定向

< ?php
$the_host = $_SERVER['HTTP_HOST'];
$the_url = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';
$the_url = strtolower($the_url);
if($the_url=="/index.php")
{
header('HTTP/1.1 301 Moved Permanently');
header('Location:http://www.yonghappy.com');
}
if($the_url !=="/index.php")
{
header('HTTP/1.1 301 Moved Permanently');
header('Location:http://www.yonghappy.com'.$the_url);
}
?>

将其中的域名换成自己的就可以了,这段代码应该可以在所有支持PHP的空间完美运行

版权声明:本文内容以盗版加工为主,原创为辅,意在分享,收藏,记录工作中的点点滴滴。不代表任何组织,不代表任何商业机构,也不代表我个人所有想法。
心晴客栈 » php程序实现301重定向

发表回复