Script http跳https

<script>
  let url = window.location.href;
  if (url.indexOf('https') < 0) {
    url = url.replace('http:', 'https:');
    window.location.replace(url);
  }
</script>

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

猜你喜欢

转载自www.cnblogs.com/shenjingwa/p/11871980.html