Chrome 为了用户安全, 在检测到网站支持HTTPS协议之后, 会记住该行为, 下次自动使用HTTPS协议, 即便手动输入 http://
强制访问HTTP也不行.
这时候可以使用无痕模式访问, 或者通过清理 Chrome 对应域名的安全缓存, 解决该问题:
Chrome 为了用户安全, 在检测到网站支持HTTPS协议之后, 会记住该行为, 下次自动使用HTTPS协议, 即便手动输入 http://
强制访问HTTP也不行.
这时候可以使用无痕模式访问, 或者通过清理 Chrome 对应域名的安全缓存, 解决该问题:
原文 Caching Tutorial for Web Authors and Webmasters
This is an informational document. Although technical in nature, it attempts to make the concepts involved understandable and applicable in real-world situations. Because of this, some aspects of the material are simplified or omitted, for the sake of clarity. If you are interested in the minutia of the subject, please explore the References and Further Information at the end.
官方给的简介是: Caddy是一个强大的、可扩展的平台, 用于伺服你的站点、服务以及应用. Caddy使用Go语言编写.
简单来说, caddy 和 nginx 很像, 我觉得相比较nginx有以下优点:
缺点就是生态和性能不如nginx, 不过个人使用绝大部分场景都能hold住.
《图解HTTP》笔记
删除HTTP请求头中的 Referer
,能解决部分防盗链问题。
在页面的 head
里添加以下代码即可删除Referer
请求头:
To configure a Java application to send web traffic to Fiddler, set the proxy using jre:
jre -DproxySet=true -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=8888