今天弄了一天,本来是直接设置主题,结果用的meta标签看起来没啥用,于是就改用了nginx,使用的是这个ngx_http_headers_module,非常好用,可以直接设置Cache-Control的请求头。用法示例expires 24h;
expires modified +24h;
expires @24h;
expires 0;
expires -1;
expires epoch;
add_header Cache-Control private;需要说明的是,expires只能用一个,@是表示具体的时间。语法:add_header name value;
默认: —
适用区间: http, server, location, if in location适用于 200, 201, 204, 206, 301, 302, 303, 304, 或者307请求语法:expires [modified] time;
expires epoch | max | off;
默认值: expires off;
适用区间: http, server, location, if in location同样适用于 200, 201, 204, 206, 301, 302, 303, 304, 或者 307这些HTTP请求。epoch表示“Thu, 01 Jan 1970 00:00:01
...
继续阅读
(3)