强制浏览器缓存.php


Force the browser to cache a .php

我需要浏览器缓存一个大的,主要是静态的.php文件。我通过ajax打开它,并希望将其添加到当前页面。

经过一些研究,如果发现这个

$seconds_to_cache = 3600;
$ts = gmdate("D, d M Y H:i:s", time() + $seconds_to_cache) . " GMT";
header("Expires: $ts");
header("Pragma: cache");
header("Cache-Control: max-age=$seconds_to_cache");

这适用于IE,但不适用于chrome和Firefox。

这是请求

Accept  text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding gzip, deflate
Accept-Language de-de,de;q=0.8,en-us;q=0.5,en;q=0.3
Cache-Control   max-age=0
Connection  keep-alive
Content-Type    application/x-www-form-urlencoded
Cookie  PHPSESSID=5dkvr42f4it8pnnnqpesj6l413
Host    localhost
Referer http://localhost/mifa/Suche.php
User-Agent  Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20100101 Firefox/13.0.1
charset utf-8

这里是响应标头

Cache-Control   max-age=3600
Connection  Keep-Alive
Content-Type    text/html
Date    Thu, 05 Jul 2012 15:28:22 GMT
Expires Thu, 05 Jul 2012 16:28:22 GMT
Keep-Alive  timeout=5, max=91
Pragma  cache
Server  Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1
Transfer-Encoding   chunked
X-Powered-By    PHP/5.3.8

我需要更改什么?

编辑

显然,只有 IE 不会将缓存控件 max-age=0 附加到请求中。

这是请求的JS函数

url = "includes/Orte.php";
obj.onreadystatechange = rState;
obj.open("GET", url, true);
obj.setRequestHeader("Pragma", "");
obj.setRequestHeader("Cache-Control", "");
obj.setRequestHeader("charset", "utf-8");
obj.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
obj.setRequestHeader("Connection", "close");
obj.send();
function rState(){
    if(obj.readyState == 4){
        if (obj.status == 200){
            //alert("Response Text Ajax:'n" + obj.responseText + "'nEnd Response Text");
        }
    }
}

请求中的Cache-Control: max-age=0标头表示您要求浏览器刷新页面,因此他只是忽略缓存。

访问页面而不按刷新(例如,聚焦地址栏并按回车键)以避免这种情况。

此外,如果页面位于 HTTPS URL 上,则可能需要将public添加到 Cache-Control 标头,否则某些浏览器不会缓存它。

我想

到的两件事是最后修改的标头和使用.htaccess缓存控制。后者适用于广泛类型,但您可以将其仅用于一个文件夹,该文件本身位于一个文件夹中。

header("Last-Modified: ... ");