2.2 配置示例 2.2.1 禁止缓存 发送如下响应头可以关闭缓存。此外,可以参考Expires和Pragma消息头。 Cache-Control:no-store 三、nginx配置 location / { #禁止浏览器缓存 index.html 和 version.json if ($request_filename ~* .*\.(htm|html|json)$) { expires -1; #add_header Cache-Control "no-store...
实现:nginx proxy_cache可以将用户的请缓存到本地一个目录,当下一个请求时可以直接调取缓存文件,就不...