我建立了一个响应站点,并且主页在移动设备上是多余的,我希望能够重定向到特定的内部页面。我已经找到了重定向到网站的移动版本的解决方案,但是当我遇到重定向循环或您无法访问该网站上的任何其他页面时,此方法不起作用。

例如我想重定向:
http://www.url.com/home



http://www.url.com/portfolio

仅在移动设备上。而且只有那一页。

最佳答案

将此代码插入http://www.url.com/home文件中

var isMobile = {
Android: function() {
    return navigator.userAgent.match(/Android/i);
},
BlackBerry: function() {
    return navigator.userAgent.match(/BlackBerry/i);
},
iOS: function() {
    return navigator.userAgent.match(/iPhone|iPad|iPod/i);
},
Opera: function() {
    return navigator.userAgent.match(/Opera Mini/i);
},
Windows: function() {
    return navigator.userAgent.match(/IEMobile/i) || navigator.userAgent.match(/WPDesktop/i);
},
any: function() {
    return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
}};
if( isMobile.any() ) {
    window.location.assign("http://www.url.com/portfolio");
}

10-08 18:33