Honestamente, he pasado todo un día en esto y no estoy más cerca de lograr que Nginx siga correctamente, especialmente con la forma en que Nginx formatea incorrectamente el encabezado Last-Modified: Date que no está dentro de los RFC para un encabezado Last-Modified.
Sin embargo, encontré esta solución que, si está utilizando PHP, funciona bien y puede ajustarse según lo necesite. Espero eso ayude. Simplemente incluya esto en la parte superior de sus páginas .php antes del resto de su código.
<?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;
}
?>
Luego pruebe su sitio en redbot.org y www.hscripts.com
ACTUALIZAR:
- Se agregó el envío del encabezado de variación con la respuesta 304 no modificada (requerido)
- Caché modificada: el encabezado de control max-age se puede ajustar a sus propias necesidades.
- Para dar crédito donde es debido, encontré la solución aquí y la modifiqué un poco: https://css-tricks.com/snippets/php/intelligent-php-cache-control/