鉴于下面的示例位置示例,-1表示过期是什么意思?这是否意味着“永不过期”或“永不缓存”?
# cache.appcache,your document html and data
location ~* \.(?:manifest|appcache|html?|xml|json)${
expires -1;
access_log logs/static.log;
}
https://github.com/h5bp/server-configs-nginx/blob/master/h5bp/location/expires.conf
最佳答案
根据nginx manual,该指令将Expires和Cache-Control HTTP标头添加到响应中.
原文链接:https://www.f2er.com/nginx/434603.html值-1表示这些标头设置为:
Expires:
current time minus 1 second
Cache-Control: no-cache
总而言之,它指示浏览器不要缓存文档.