前端实现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;
}