是否可以在Safari或任何现代浏览器中完全关闭缓存?

时间:2014-03-14 03:20:15

标签: javascript caching browser safari web-inspector

我知道可以通过快捷方式在浏览器中清除缓存:Disable cache in browser。但是可以完全关闭Safari或任何现代浏览器中的缓存?根据我的经验和OSX流程日志,Safari"禁用缓存"选项不会完全禁用Safari中的缓存。

1 个答案:

答案 0 :(得分:0)

https://stackoverflow.com/a/1341133/3207478

这应该这样做:

<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />