且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

浏览器不记得上次查看页面的位置

更新时间:2023-08-31 23:08:10

我通过使用 php.ini 发送标头解决了这个问题.这是我的解决方案:

I fixed this issue by sending headers with php. This was my solution:

header("Expires: 0");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: store, cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", FALSE);

感谢大家的帮助.