我正在提供永远不会随广告服务器更改的静态图像,并且我看到 http 标头包括以下内容:
缓存控制:max-age=315360000
语用:公共
缓存控制:公共,必须重新验证,代理重新验证
如何让浏览器缓存数据?我的源服务器是 nginx。
谢谢!
添加expires max;
到静态图像的位置,请参阅http://nginx.org/en/docs/http/ngx_http_headers_module.html#expires
更新:
要将其应用于特定目录-假设是子目录图像-您将添加以下内容:
location /images/ {
expires max;
}