我从此站点读取了很多内容,然后尝试将重定向到桌面站点。但是它不断返回移动网站。首先,它是重定向的,但在桌面站点没有完全加载时重定向回移动站点。
检查完整的站点链接
这是我的代码 -
$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");
}
}
添加header
后添加出口 header ("Location: http://vipnet.byethost7.com/mobile/m.index.html");
to
header ("Location: http://vipnet.byethost7.com/mobile/m.index.html");
exit();