如何告诉IE6不缓存html/页面?

发布于 2024-12-27 17:31:05 字数 415 浏览 2 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

<逆流佳人身旁 2025-01-03 17:31:05

这是一个错误。检查此处:

尽管您使用“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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文