私のサーバーは次のヘッダーを返します:
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ヘッダーを返す方法を探しています。今のようなもの()...
「配信中のコンテンツをキャッシュしないようにしたい」:If-Modified-Since
ディレクティブを使用してif_modified_since off;
リクエストヘッダーのチェックをオフにすることができます。 if_modified_since doc
Last-Modified
ヘッダーについて:add_header Last-Modified "";
でオフにできます
ファイルが常に変更されているように見せたい場合があります。
add_header Last-Modified $date_gmt;
if_modified_since off;
etag off;
最後の行については、本当に最後に変更された日付を非表示にしたい場合は、 タイムスタンプをリークする であるため、ETag
ヘッダーも非表示にする必要があります。
私は正直にこれに丸一日を費やしました、そして特にNginxがLast-ModifiedヘッダーのRFC内にないLast-Modified:Dateヘッダーを誤ってフォーマットする方法で、適切にNginxを正しく動作させることに近づきませんでした。
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でサイトをテストします
UPDATE: