美文网首页
前端实现http转https,www转非www

前端实现http转https,www转非www

作者: 静候那一米阳光 | 来源:发表于2017-12-11 12:30 被阅读0次

    前端实现http转https,www转非www

    var href = window.location.href;
    if (!/^https/.test(href)) {
      href = href.replace('http', 'https');
    }
    if (/^https:\/\/www\./.test(href)) {
      href = href.replace('www.', '');
    }
    if (window.location.href != href) {
      window.location.href = href;
      return;
    }

    相关文章

      网友评论

          本文标题:前端实现http转https,www转非www

          本文链接:https://www.haomeiwen.com/subject/bzriixtx.html