【发布时间】:2014-03-07 22:36:39
【问题描述】:
如果用户希望从移动设备访问桌面站点,我该如何处理?
我正在使用这个库重定向到移动设备,以及如何创建重定向。下面的代码是我正在使用 mobile_detect.php 库:
require_once 'controller/Mobile_Detect.php';
$detect = new Mobile_Detect;
// Any mobile device (phones or tablets).
if ( !$detect->isMobile() ) {
//the link to mobile site
}
但是反之如何处理呢?
感谢您的帮助
【问题讨论】:
-
不要触发重定向脚本,如果用户选择了桌面版本,也许你可以在会话中存储一个值
-
你能给我看看吗?
-
添加了一个示例答案
标签: php redirect mobile desktop