html 重定向https - sw博客-script language='javascript'

默契网络

点滴记忆
首页>> 优化设置 >>html 重定向https - sw博客
<script language='javascript'>
if (document.location.protocol=="http:" && 
{
//http redirect to https
var new_url = "https://" + document.location.hostname + document.location.pathname + document.location.search;
document.location = new_url;
}

或者(带有域名跳转)

<script language='javascript'>
if (document.location.protocol=="http:" && 
(document.location.hostname=='cd-sw.com' || document.location.hostname=='www.cd-sw.com')) {
//http redirect to https
var new_url = "https://" + document.location.hostname + document.location.pathname + document.location.search;
document.location = new_url;

}


×

感谢您的支持,我们会一直保持!

扫码支持
请土豪扫码随意打赏

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

打赏作者
版权所有,转载注意明处:sw博客 » html 重定向https

发表评论

路人甲
未显示?请点击刷新

网友评论(0)