Redirect user to mobile version of site

元气小坏坏 提交于 2019-12-25 08:03:11

问题


How can i redirect users with older devices to a simplified (no css ) version of mobile site [ m.site.com ] , and newer devices like Iphone or Samsung Galaxy to a more modern one ? [sp.site.com ]


回答1:


I would recommend feature detection.

Test the features you need for the 'newer devices' and redirect to the older if there is a lack of support.

You can test features using Modernizr

redirection is as easy as:

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


来源:https://stackoverflow.com/questions/10042686/redirect-user-to-mobile-version-of-site

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!