大体配置是这样,想实现带 mycookie 这个 cookie 的 php 页面,添加 Cache-Control 这个 http 头:
server {
...
set $skip_cache 0;
if ($http_cookie ~* "mycookie") {
set $skip_cache 1;
}
location ~ [^/]\.php(/|$) {
add_header X-Frame-Options "SAMEORIGIN";
add_header X-Content-Type-Options "nosniff";
if ($skip_cache = 1) {
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0";
}
}
}
发现加了下面这 3 行代码后, Cache-Control 头倒是出现了,但是 X-Frame-Options 和 X-Content-Type-Options 这两个 http 头不见了,删掉这 3 行代码后又出现:
if ($skip_cache = 1) {
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0";
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.