304: değiştirilmiş ve ön uç değil önbelleğe

3 Cevap php

I am using a PHP script to serve files. I would like to be able to send back a 304 not modified header in my http response if the file has not changed since the client last downloaded it. This seems to be a feature in Apache (and most other web servers), but I have no clue how this can be implemented through PHP.

I $_SERVER['HTTP_IF_MODIFIED_SINCE'] kullanarak duymuş, ama bu değişken benim $_SERVER süper dizide görünmesini görünmüyor.

Sorum 304 başlığı dönmek, ama nasıl bir iade edilmesi gerektiğini bilmek nasıl değildir.


Edit: Sorun benim $_SERVER['HTTP_IF_MODIFIED_SINCE'] ayarlanmış olmasıdır. Bu benim .htaccess dosyanın içeriği:

ExpiresActive On 
ExpiresByType image/jpeg "modification plus 1 month"
ExpiresByType image/png "modification plus 1 month"
ExpiresByType image/gif "modification plus 1 month"
Header append Cache-Control: "must-revalidate" 


<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteCond $1 !^(controller\.php)
   RewriteRule (.*\.jpg|.*\.png|.*\.gif) controller.php/$1
</IfModule>

HTTP_IF_MODIFIED_SINCE hala $_SERVER süper dizide görünmüyor.

3 Cevap

HTTP_IF_MODIFIED_SINCE bunu yapmak için doğru yoldur. Eğer almıyorsanız, Apache olup olmadığını kontrol mod_expires and mod_headers enabled and working properly. Borrowed from a comment on PHP.net:

$last_modified_time = filemtime($file); 
$etag = md5_file($file);
// always send headers
header("Last-Modified: ".gmdate("D, d M Y H:i:s", $last_modified_time)." GMT"); 
header("Etag: $etag"); 
// exit if not modified
if (@strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) == $last_modified_time || 
    @trim($_SERVER['HTTP_IF_NONE_MATCH']) == $etag) { 
    header("HTTP/1.1 304 Not Modified"); 
    exit; 
}

// output data

This article önbelleğe tüm sorulara cevap verecektir

Ben bulduğunu da ekledi

RewriteRule .* - [E=HTTP_IF_MODIFIED_SINCE:%{HTTP:If-Modified-Since}]
RewriteRule .* - [E=HTTP_IF_NONE_MATCH:%{HTTP:If-None-Match}]

(Tüm RewriteRule aşağıda) benim htaccess dosyasının altına çalıştı.

register_globals kapalı olduğunda $_SERVER['HTTP_IF_MODIFIED_SINCE'] genellikle boştur.

Bu durumda olup olmadığını kontrol edin ve eğer öyleyse getenv('HTTP_IF_MODIFIED_SINCE') deneyin