我正在使用 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 中停止缓存?