如何将移动用户重定向到我的网站的移动版本?

时间:2013-06-24 12:57:16

标签: php javascript jquery css html5

我有一个网站www.domain.com,我设计了一个新的移动版m.domain.com。但是如何检测移动设备并将其从www.domain.com重定向到m.domain.com?

2 个答案:

答案 0 :(得分:3)

我刚刚在谷歌搜索,这是第一个结果:

http://mobiledetect.net/

include 'Mobile_Detect.php';
$detect = new Mobile_Detect();

// Check for any mobile device.
if ($detect->isMobile())

// Check for any tablet.
if($detect->isTablet())

// 3. Check for any mobile device, excluding tablets.
if ($detect->isMobile() && !$detect->isTablet())

答案 1 :(得分:1)

使用此代码检测移动设备,然后重定向: -

<script>
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) ) {
window.location = "m.domain.com";
}
</script>

test()方法已用于测试字符串中的匹配项,如果找到匹配项,则会发生重定向。在页面顶部添加此代码。