【发布时间】:2014-11-05 16:36:33
【问题描述】:
我需要为网站的移动用户进行简单的重定向
当用户使用移动设备自动检查网站时,它应该重定向到另一个网页
这行得通吗????
<script type="text/javascript">
<!--
if (screen.width <= 800) {
window.location = "http://m.domain.com";
}
//-->
</script>
我需要一个简单的脚本来重定向移动用户 因为有人说我们需要使用 .htaccess 文件
- 我对 .htaccess 没有任何基本知识
【问题讨论】:
-
是的,这是最好的方法,使用 JQuery 您可以检测屏幕分辨率,然后重定向到您的移动网页
-
我不需要检测分辨率,我需要检测设备并重定向
标签: php html mobile browser-detection