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

2017-12-11  本文已影响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;
}
上一篇下一篇

猜你喜欢

热点阅读