如何告诉IE6不缓存html/页面?
我使用 PHP 使用以下代码,
header("Cache-control: private");
header('Expires: Mon, 26 Jul 2010 05:00:00 GMT');
header("Last-Modified: Mon, 26 Jul 2010 05:00:00 GMT");
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
header('Cache-Control: post-check=0, pre-check=0', FALSE);
header('Pragma: no-cache');
在所有浏览器中似乎工作正常,但在 IE6 中则不然,除非我按 Ctrl+F5 强制刷新页面。如何在IE6中停止缓存?
I am using the following code using PHP,
header("Cache-control: private");
header('Expires: Mon, 26 Jul 2010 05:00:00 GMT');
header("Last-Modified: Mon, 26 Jul 2010 05:00:00 GMT");
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
header('Cache-Control: post-check=0, pre-check=0', FALSE);
header('Pragma: no-cache');
In all browsers it seems to be working fine but not in IE6 unless I hit Ctrl+F5 to forcefully refresh the page. How to stop caching in IE6?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许这可以帮助您:您无法使用 META 标记阻止 Internet Explorer 6 缓存 HTTP 页面
或者这样:IE6 和缓存
Maybe this can help you: You cannot prevent Internet Explorer 6 from caching HTTP pages by using META tags
Or this: IE6 and Caching
这是一个错误。检查此处:
尽管您使用“Cache-Control:no-cache”,但始终缓存带有“Content-Encoding:gzip”的内容
http://support.microsoft.com/kb/321722
禁用 gzip 压缩几乎可以解决此问题。
您可以仅禁用匹配“MSIE 6”的用户代理。
It's a bug. Check here:
Content with "Content-Encoding: gzip" Is Always Cached Although You Use "Cache-Control: no-cache"
http://support.microsoft.com/kb/321722
Disabling gzip compression pretty much fixes it.
You could disable it just of user agents matching "MSIE 6".