HTTP协议定义的缓存机制(如:Expires; Cache-control 等)
校检是否过期 | Expires、Cache-Control(max-age) |
---|---|
协议中Etag头信息校检 | Etag |
Last-Modified头信息校检 | Last-Modified |
| expires | | | :--- | :--- | :--- | | 语法 | expires [modified] time expires epoch |max | off | | 默认 | expires off | | 作用域 | http,server,location,if in location |
...
# 访问的所有以 htm或者 html结尾的
location ~ .*\.(htm|html)$ {
expires 24h; # 缓存24小时
...
}