window.onload = function(){
/*页面强转开始*/
var tmpTag = 'https:' == document.location.protocol ? false : true;
if(tmpTag){
var urls=window.location.href;
urls = urls.replace("http", "https");
window.location=urls;
}
/*页面强转结束*/
}
https 转http
window.onload = function(){
/*页面强转开始*/
var tmpTag = 'http:' == document.location.protocol ? false : true;
if(tmpTag){
var urls=window.location.href;
urls = urls.replace("https", "http");
window.location=urls;
}
/*页面强转结束*/
}