我有一个 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)
吗?
谢谢你。