我正在开发一个html页面,检查流量是移动还是桌面。之后,如果移动它重定向到“页面A”,否则如果桌面重定向到“页面B”。
目前我有这个代码,但不能在移动设备上工作,重定向仅适用于桌面流量。
我该如何解决?
<html>
<head>
<script>if (typeof window.orientation == 'undefined' || len(navigator.plugins.length) > 0){
document.location.href='http://pageA';
}
else {
document.location.href='http://pageB';
}</script>
<title>My test</title>
</head>
<body>
</body>
</html>
答案 0 :(得分:0)
我在.htaccess和/或javascript
中使用了这个实现它需要对您想要的结果进行一些修改,但这两种解决方案都提供了一种合理的检测和重定向方法 -
http://www.inmotionhosting.com/support/website/redirects/mobile-redirect