php 获取根域名 并301跳转www域名
Posted 在下刘彦直
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 获取根域名 并301跳转www域名相关的知识,希望对你有一定的参考价值。
<?php
$_zjt = $_SERVER[‘HTTP_HOST‘];
$_xxurl = explode(".",$_zjt);
$urlqz = $_xxurl[0];
$_xxurl = array_reverse($_xxurl);
$urlhz = $_xxurl[1].".".$_xxurl[0];
$sssxxxddd = "com.cn|net.cn|org.cn|gov.cn|bj.cn|sh.cn|tj.cn|cq.cn|zj.cn|nm.cn|ln.cn|jl.cn|hl.cn|js.cn|he.cn|ah.cn|fj.cn|jx.cn|sd.cn|ha.cn|hb.cn|hn.cn|gd.cn|gx.cn|hi.cn|sx.cn";
$sssxxxddd = explode("|",$sssxxxddd);
if (in_array($urlhz,$sssxxxddd))
{
$urlhz = $_xxurl[2].".".$_xxurl[1].".".$_xxurl[0];
}
function cw_31(){
global $urlhz;
header("HTTP/1.1 301 Moved Permanently");
header(‘Location: http://www.‘.$urlhz.‘/‘);
exit();
}
if($_zjt==$urlhz){
cw_31();
}
?>
以上是关于php 获取根域名 并301跳转www域名的主要内容,如果未能解决你的问题,请参考以下文章
php获取当前网页域名,并判断是不是为域名A,如果是就跳出判断语句,不是就跳转到域名A。