强制浏览器缓存.php

时间:2012-07-05 15:29:43

标签: php http-headers

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

经过一些研究后发现this

$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不会将Cache-Control 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");
        }
    }
}

2 个答案:

答案 0 :(得分:2)

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

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

此外,如果页面位于HTTPS URL上,您可能必须将public添加到Cache-Control标头,否则某些浏览器不会对其进行缓存。

答案 1 :(得分:0)

我想到的两件事是最后修改的标头,并使用.htaccess缓存控件。后者适用于广泛类型,但您只能将其用于一个文件夹,并将该文件单独放在文件夹中。

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