나는 솔직히 이것에 하루 종일 보냈고 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에서 사이트를 테스트하십시오.
최신 정보:
- 304 수정되지 않은 응답으로 가변 헤더 전송 추가 (필수)
- Modified Cache : 컨트롤 헤더 최대 연령을 원하는대로 조정할 수 있습니다.
- 어디 예정이다 신용을 제공하기 위해, 내가 여기 해결책을 발견하고 약간 불통 - https://css-tricks.com/snippets/php/intelligent-php-cache-control/