• 确博日记
  • 工作时间:09:30 pm-06:24 pm

网站http强制跳转到https的JS代码(JavaScript)

JS跳转代码简单方便,但不推荐长久使用,毕竟JS跳转对比(如301跳转)来说对搜索引擎并不友好,如果忽略搜索引擎优化JS跳转也是不错的选择。

将以下代码添加到网站的页面中,一般网站头部即可。


<script type="text/javascript">
var targetProtocol = "https:";
if (window.location.protocol != targetProtocol)
 window.location.href = targetProtocol +
  window.location.href.substring(window.location.protocol.length);
</script>

  • 在线列表
    1589813

  • 在线提交