技术宅

当前位置:首页 > 网站教程 > 代码学习

代码学习

Script http跳https

时间:09-26 作者:
<script>  let url = window.location.href;  if (url.indexOf(&#39;https&#39;) < 0) {    url = url.replace(&#39;http:&#39;, &#39;https:&#39;);    windo
<script>
  let url = window.location.href;
  if (url.indexOf('https') < 0) {
    url = url.replace('http:', 'https:');
    window.location.replace(url);
  }
</script>

本地开发的时候请注释掉以上代码