手机版 电脑版网站自动切换网址
手机版 电脑版网站自动切换网址
$url=$_SERVER[HTTP_HOST];//获取当前服务器地址;
if (checkmobile()) {
if ($url!==”m.******.com”) {
header(“location:http://m.********.com”);
}
}else{
if ($url!==”www.*****.com”) {
header(“location:http://www.*******.com”);
}
}
注:checkmobile为判断是否为手机端函数,是返回ture,否返回false;