我想将我的移动网站切换到主站点。记得当你在手机上打开Facebook时,移动版中的Facebook视图会发生变化,当你点击“转到主站点”时,它会出现在手机中的主站点。我想要的。
并且主要问题是两个链接都是相同的意思
main site url is http://www.yousite.com
mobile site url is http://www.yousite.com
当您在移动设备中打开时,会显示移动模板,当我打开桌面时,会显示主网站模板。
答案 0 :(得分:1)
我在我网站的早期版本上完成了此操作并在此处写了相关内容:http://arleym.com/mobile-device-detection-redirection/
基本上我有一些设备检测,如果有查询字符串将被忽略。因此,“查看桌面版本”链接将避免检测/重定向并为用户提供cookie。
我使用了这个检测脚本:http://detectmobilebrowsers.mobi/
并修改了我的开关:
<?php
if(isset($_GET['switch'])){
setcookie('switch',$_GET['switch']); // set a cookie
}
if(!isset($_GET['switch']) && !isset($_COOKIE['switch'])){
require_once('/server/path/arleym.com/mobile_device_detect.php'); //Andy Moore's script
mobile_device_detect(true,false,true,true,true,true,true,'
http://arley.me',false);
}
?>
视图桌面网址只是像href =“http://whatever.com?switch=0”那样