繁体   English   中英

php从移动设备重定向到桌面站点

[英]php redirect to desktop site from mobile

我从该站点上大量阅读并尝试创建重定向到桌面站点。 但它不断返回到移动网站。 最初,它被重定向,但是重定向回了移动站点,而桌面站点并未完全加载。

检查完整站点链接

这是我的代码-

$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 ("Location: http://vipnet.byethost7.com/mobile/m.index.html");

 header ("Location: http://vipnet.byethost7.com/mobile/m.index.html");
 exit();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM