如何更改nginx上的Last-Modified标头?


8

我的服务器返回以下标头:

Cache-Control:no-cache
Connection:keep-alive
Date:Thu, 07 Jul 2011 10:41:57 GMT
Expires:Thu, 01 Jan 1970 00:00:01 GMT
Last-Modified:Thu, 07 Jul 2011 08:06:32 GMT
Server:nginx/0.8.46`

我希望不缓存我所服务的内容,因此我正在寻找一种方法来返回包含请求发起日期的日期时间的Last-Modified标头。类似于now()...

Answers:


10

“我不希望缓存正在服务的内容”:您可以If-Modified-Since使用if_modified_since off;指令关闭请求标头检查。if_modified_since文档

关于Last-Modified标题:您可以使用关闭它add_header Last-Modified "";


1
您无法使用add_header关闭标头,只能添加标头。从条目:注意,它只是将新的标题条目附加到输出标题列表。因此,您不能使用此伪指令来重写现有的标头,例如Server。为此使用headers_more模块。
kolbyjack 2011年

我已经检查了它,curl -D并将其添加add_header Last-MOdified "";到我的nginx.conf后,Last-Modified转储文件中不再包含标头。
Casual Coder

1
哇,从源头来看,Cache-Control和Last-Modified是特殊情况,将被设置而不是添加额外的条目。维基似乎需要更新。
kolbyjack

1
我又一次错了,Cache-Control是特殊情况,但它不会覆盖,只需要以特殊方式添加即可。仅Last-Modified设置标头,而不添加新标头。
kolbyjack

很高兴知道,您能指出我一个文件吗?在src/http/ngx_http_header_filter_module.c吗?
Casual Coder

6

您可能希望使其看起来像文件总是被修改的:

add_header Last-Modified $date_gmt;
if_modified_since off;
etag off;

至于最后一行,如果您确实要隐藏真正的上次修改日期,则也必须隐藏ETag标题,因为它会泄漏时间戳


0

老实说,我已经花了整整一整天的时间,并且接近使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上测试您的网站

更新:

  1. 添加了发送带有304未修改响应的variable标头(必填)
  2. 修改后的Cache:Control标头的max-age可以根据自己的需要进行调整。
  3. 为了表示应有的信誉,我在这里找到了解决方案,并对其进行了一些微调-https: //css-tricks.com/snippets/php/intelligent-php-cache-control/
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.