文件名带哈希的资源永不变,标 immutable 让浏览器彻底信任;入口 HTML 要每次问源站。
示例配置
location ~* \.(js|css)$ {
add_header Cache-Control "public, max-age=31536000, immutable";
}
location = /index.html {
add_header Cache-Control "no-cache";
}
要点速览
- immutable 告诉浏览器有效期内连条件请求都别发,最省。
- no-cache 不是不缓存,而是每次校验是否有更新。
- 两者配合,发版即时生效、日常极速加载。
缓存头写对,发版与体验就不能兼得是伪命题。