动态Php标头缓存不起作用

时间:2016-07-22 08:31:22

标签: php caching

在我的前置文件中,我在代码

下面
$offset = 3600 * 24;
$expire = "Expires: " . gmdate("D, d M Y H:i:s", time() + $offset) . " GMT";
Header($expire);

现在,当我点击任何网址时,标题为

Connection →Keep-Alive
Content-Encoding →gzip
Content-Length →7026
Content-Type →application/json
Date →Fri, 22 Jul 2016 08:26:22 GMT
Expires →Sat, 23 Jul 2016 08:26:22 GMT
Keep-Alive →timeout=5, max=100
Server →Apache/2.4.18 (Fedora) PHP/5.6.23
Vary →Accept-Encoding
X-Powered-By →PHP/5.6.23

所以我希望缓存URL,但下次当我再次访问相同的URL时,所有MySQL查询都会再次执行,这意味着没有设置缓存。

请建议。

0 个答案:

没有答案