これらのヘッダーを既に送信している PHP ページ (a.php) があります。
<?php
header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Pragma: no-cache');
?>
また、PHP ページ (a.php) には、別のページ (b.html) へのリンクがあります。
b.html には、次の JavaScript コードがあります。
<script type="text/javascript">
history.go(-1);
</scirpt>
ブラウザが a.php に「戻る」とき、コンテンツはまったく新鮮ではないように思えます。
history.go(-1)
完全に新しいページを生成できるかどうか教えてください。
ありがとうございました。