将用户重定向到移动版网站

时间:2012-04-06 11:14:14

标签: mobile redirect user-agent

如何将使用旧设备的用户重定向到简化(无css)版本的移动网站[m.site.com],将更新的设备(如Iphone或Samsung Galaxy)转换为更现代的设备? [sp.site.com]

1 个答案:

答案 0 :(得分:1)

我建议使用特征检测。

测试“较新设备”所需的功能,如果缺少支持,则重定向到较旧设备。

您可以使用Modernizr

测试功能

重定向就像:

<script type="text/javascript">
<!--
    window.location = "m.site.com"
//-->
</script>
相关问题