PHPサイドでは
header("Expires: " . gmdate("D, d M Y H:i:s",time() - 3600 * 24 * 365) . " GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
を実行し
HTMLサイドでは
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-store, no-cache, must-revalidate">
<meta http-equiv="Expires" content="Thu, 01 Dec 1994 16:00:00 GMT">
<meta http-equiv="Content-Type" content="text/html; charset=EUC-JP">
上記のMetaタグを埋め込んでおります。
なにが悪いのでしょうか・・・。
※尚、はじめの段階ではMetaタグは埋め込んでおりませんでした。
消えないため、埋め込みました。
IE6 では Ctrl + F5 で強制的に Web ページを更新することができます。
スーパーリロードとも言われたりするみたいですが、試してみてはどうでしょうか。
うーん、それだと使用者に更新の手間をかけさせるため、ダメなんですよねー。
ちょっと、別の事情が分かったため、質問しなおします。