pc端除首页外如何设置跳转移动页?

268次浏览 更新日期:2024-05-07 12:48:19 分类:问题求助 评论:3

有哪位大神知道pc端除首页外如何设置跳转移动页? 移动端设置了m.域名! 求解决方法。

我来说两句
  • @1464126707 灵活的改下不就可以了
    0
    回复
  • @不吃芒果 您好,我设置了独立 m 域名,实际是跳转到 m.上   如abc.com或www.abc.com 跳转到m.abc.com
    0
    回复
  • 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) {
            }
          }
        }
      }
    }
    0
    回复
作者信息
发布见解
发内容 回顶部