标签:文件 历史记录 int 方便 使用 缓存 lib 谷歌 日常
在安装配置 SSL 证书时,可以使用一种能使数据传输更加安全的Web安全协议,即在服务器端上开启 HSTS
(HTTP Strict Transport Security)。它告诉浏览器只能通过HTTPS访问,而绝对禁止HTTP方式。
HTTP Strict Transport Security (HSTS) is an opt-in security enhancement that is specified by a web application through the use of a special response header. Once a supported browser receives this header that browser will prevent any communications from being sent over HTTP to the specified domain and will instead send all communications over HTTPS. It also prevents HTTPS click through prompts on browsers.
但是,在日常开发的过程中,有时我们会想测试页面在 HTTP 连接中的表现情况,这时 HSTS 的存在会让调试不能方便的进行下去。而且由于 HSTS 并不是像 cookie 一样存放在浏览器缓存里,简单的清空浏览器缓存操作并没有什么效果,页面依然通过 HTTPS 的方式传输。 那么怎样才能关闭浏览器的 HSTS 呢,各种谷歌
之后,在这里汇总一下几大常见浏览器 HSTS 的关闭方法。
~/Library/Cookies/HSTS.plist
这个文件chrome://net-internals/#hsts
Delete domain
中输入项目的域名,并 Delete
删除Query domain
测试是否删除成功和 Chrome 方法一样
about:permissions
Forget About This Site
内容转自:http://www.tuicool.com/articles/QbYBne
标签:文件 历史记录 int 方便 使用 缓存 lib 谷歌 日常
原文地址:http://www.cnblogs.com/nayu/p/6896469.html