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

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

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

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()...

答案1

“我希望我提供的内容不被缓存”:您可以If-Modified-Since使用指令关闭请求头检查if_modified_since off;if_modified_since 文档

关于Last-Modified标题:你可以使用以下命令将其关闭add_header Last-Modified "";

答案2

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

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

至于最后一行,如果你真的想隐藏真正的最后修改日期,那么你ETag也必须隐藏标题,因为它泄露了时间戳

答案3

老实说,我花了一整天的时间在这上面,但还是没能使 Nginx 正常运行,尤其是 Nginx 错误地格式化了 Last-Modified:Date 标头,而这不在 Last-Modified 标头的 RFC 范围内。

不过,我发现了这个解决方案,如果您使用的是 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 未修改响应发送的可变标头(必需)
  2. 修改后的缓存:控制标头最大年龄可以根据您自己的需要进行调整。
  3. 为了给予应得的赞扬,我在这里找到了解决方案并对其进行了稍微的调整 -https://css-tricks.com/snippets/php/intelligent-php-cache-control/

相关内容