我有个问题。对于我的 Joomla 网站,我制作了两个不同的模板。一个模板是桌面版本,另一个是移动使用。
两个模板都工作正常,桌面是默认模板。
但我喜欢有一个移动识别和重定向脚本,将移动用户重定向到 url www.domain.nl/mobiel(这个 url 有移动模板)
现在我在默认(桌面模板)中实现了一个 php 代码。此代码将移动用户重定向到此 url。该脚本工作正常。
在移动页面上,我有一个正确链接回桌面模式主页的网址“ http://www.domain.nl/?mode=desktop ”
但问题是:当移动用户处于桌面模式并点击菜单项时,他们会自动重定向到移动页面。所以我认为可能是饼干之类的?
<?php
function is_mobiel(){
$regex_match="/(nokia|iphone|android|motorola|^mot\-|softbank|foma|docomo|kddi|up\.browser|up\.link|";
$regex_match.="htc|dopod|blazer|netfront|helio|hosin|huawei|novarra|CoolPad|webos|techfaith|palmsource|";
$regex_match.="blackberry|alcatel|amoi|ktouch|nexian|samsung|^sam\-|s[cg]h|^lge|ericsson|philips|sagem|wellcom|bunjalloo|maui|";
$regex_match.="symbian|smartphone|midp|wap|phone|windows ce|iemobiel|^spice|^bird|^zte\-|longcos|pantech|gionee|^sie\-|portalmmm|";
$regex_match.="jig\s browser|hiptop|^ucweb|^benq|haier|^lct|opera\s*mobi|opera\*mini|320x320|240x320|176x220";
$regex_match.=")/i";
return isset($_SERVER['HTTP_X_WAP_PROFILE']) or isset($_SERVER['HTTP_PROFILE']) or preg_match($regex_match, strtolower($_SERVER['HTTP_USER_AGENT']));
}
switch($_GET['mode'])
{
case 'mobiel':
$mode = "mobiel";
break;
case 'desktop':
$mode = "desktop";
break;
default:
$mode = is_mobiel() ? "mobiel" : "desktop";
break;
}
if ($mode == "mobiel")
{
header ("Location: http://www.domain.nl/mobiel?m");
return;
}
?>