当前位置:首页 » 《关于电脑》 » 正文

如何在nginx上设置html不缓存

10 人参与  2024年04月25日 08:04  分类 : 《关于电脑》  评论

点击全文阅读


一、简介

前端项目发布以后,经常会遇到访问不到最新的版本,这主要是由于我们项目的入口文件index.html被浏览器或者代理缓存了,没有实时拉取到最新文件。本文将介绍一下在nginx上如何设置html文件不缓存。

二、Cache-Control介绍

2.1 服务器可以在响应中使用的标准 Cache-Control 指令。
Cache-control: must-revalidateCache-control: no-cacheCache-control: no-storeCache-control: no-transformCache-control: publicCache-control: privateCache-control: proxy-revalidateCache-Control: max-age=<seconds>Cache-control: s-maxage=<seconds>
2.2 配置示例

2.2.1 禁止缓存

发送如下响应头可以关闭缓存。此外,可以参考ExpiresPragma消息头。

Cache-Control: no-store

三、nginx配置

location / { expires 1h; root /home/html; index index.html index.htm; ## html不缓存  if ($request_filename ~* .*\.(htm|html)$)  {     add_header Cache-Control "no-store"; }}


点击全文阅读


本文链接:http://zhangshiyu.com/post/99822.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1