Answers:
“我不希望缓存正在服务的内容”:您可以If-Modified-Since
使用if_modified_since off;
指令关闭请求标头检查。if_modified_since文档
关于Last-Modified
标题:您可以使用关闭它add_header Last-Modified "";
curl -D
并将其添加add_header Last-MOdified "";
到我的nginx.conf后,Last-Modified
转储文件中不再包含标头。
src/http/ngx_http_header_filter_module.c
吗?
老实说,我已经花了整整一整天的时间,并且接近使Nginx正常运行,尤其是Nginx错误地格式化Last-Modified:Date报头的方式,该报头不在RFC的Last-Modified报头之内。
我找到了这个解决方案,但是,如果您使用的是PHP,则可以很好地工作,并且可以根据需要进行调整。希望能帮助到你。只需在您的.php页面的顶部将其包括在其余代码之前即可。
<?php
//get the last-modified-date of this very file
$lastModified=filemtime(__FILE__);
//get a unique hash of this file (etag)
$etagFile = md5_file(__FILE__);
//get the HTTP_IF_MODIFIED_SINCE header if set
$ifModifiedSince=(isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? $_SERVER['HTTP_IF_MODIFIED_SINCE'] : false);
//get the HTTP_IF_NONE_MATCH header if set (etag: unique file hash)
$etagHeader=(isset($_SERVER['HTTP_IF_NONE_MATCH']) ? trim($_SERVER['HTTP_IF_NONE_MATCH']) : false);
//set last-modified header
header("Last-Modified: ".gmdate("D, d M Y H:i:s", $lastModified)." GMT");
//set etag-header
//header("Etag: $etagFile");
header("ETag: \"$etagFile\"");
//make sure caching is turned on
header('Cache-Control: private, must-revalidate, proxy-revalidate, max-age=3600');
//check if page has changed. If not, send 304 and exit
if (@strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE'])==$lastModified || $etagHeader == $etagFile)
{
header("HTTP/1.1 304 Not Modified");
header("Vary: Accept-Encoding");
exit;
}
?>
然后在redbot.org和www.hscripts.com上测试您的网站
更新: