有哪位大神知道pc端除首页外如何设置跳转移动页? 移动端设置了m.域名! 求解决方法。
@1464126707 灵活的改下不就可以了
@不吃芒果 您好,我设置了独立 m 域名,实际是跳转到 m.上 如abc.com或www.abc.com 跳转到m.abc.com
if (window.location.toString().indexOf('pref=padindex') != -1) { } else { // 检查当前页面是否为首页 var isHomePage = window.location.pathname === '/' || window.location.pathname.endsWith('/index.php') || window.location.pathname.endsWith('/index.html'); if (!isHomePage) { if (/AppleWebKit.*Mobile/i.test(navigator.userAgent) || (/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))) { if (window.location.href.indexOf("?mobile") < 0) { try { if (/Android|Windows Phone|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) { window.location.href = "{$site[site_url]}index.php?m=mobile"; } else if (/iPad/i.test(navigator.userAgent)) { } else { } } catch (e) { } } } } }
这家伙很懒,什么都没写呢~