response.setHeader("Cache-Control", "no-cache")
, 其他静态资源(js、css)照旧还是强缓存。# 其它配置 ...
if ($request_uri ~* .*.$) {
#非html缓存1个月
add_header Cache-Control "public, max-age=2592000";
}
if ($request_filename ~* ^.*.$) {
#html文件使用协商缓存
add_header Cache-Control "no-cache";
} }
## 网上所谓的在html加以下代码是无效的,这个是历史遗留产物,现在基本淘汰了。
```html
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
没说明白问题。 这个缓存是浏览器的标准,在这里 www.rfc-editor.org