特殊情况下,无需配置web服务器
301,就能实现HTTP
自动跳转HTTPS
:
<script>if (document.location.protocol != "https:") {document.location = document.URL.replace(/^http:/i, "https:");}</script>
摘自:
view-source:https://www.ycku.com/
版权属于:soarli
本文链接:https://blog.soarli.top/archives/436.html
转载时须注明出处及本声明。
这个和301跳转还是有区别的
嗯嗯,对滴