我从这个网站上读了很多,并尝试创建重定向到桌面网站。 但它不断回到移动网站。首先,它被重定向,但重定向回移动站点,而桌面站点没有完全加载。
检查Full Site链接
这是我的代码 -
$isPhone = preg_match('/' . implode($uaPhone, '|') . '/i', $uaFull);
$isMobile = preg_match('/' . implode($uaMobile, '|') . '/i', $uaStart);
if($isPhone || $isMobile) {
$_SESSION["mb"]="jaw";
}
if(!isset($_SESSION['desktop'])) {
$_SESSION['desktop'] = false;
} else if(isset($_GET['desktop']) && $_GET['desktop'] ==yes) {
$_SESSION['desktop'] = true;
}
if(!$_SESSION['desktop']) {
if (isset($_SESSION["MB"] )) {
header ("Location: http://vipnet.byethost7.com/mobile/m.index.html");
}
}
答案 0 :(得分:-1)
在标题
之后添加退出 header ("Location: http://vipnet.byethost7.com/mobile/m.index.html");
到
header ("Location: http://vipnet.byethost7.com/mobile/m.index.html");
exit();