gpt4 book ai didi

java - 如何在浏览器中跳过访问页面的历史记录

转载 作者:行者123 更新时间:2023-11-29 07:21:07 24 4
gpt4 key购买 nike

由于某些安全限制,要求访问的页面不应列在浏览器的历史记录中。

因此页面根本不需要显示在历史记录中。

我尝试了以下方法但失败了。

解决方案一:

1. <%
2. session.invalidate();
3. response.setHeader("Cache-Control","no-cache");
4. response.setHeader("Cache-Control","no-store");
5. response.setDateHeader("Expires", 0);
6. response.sendRedirect("home.jsp");
7. %>

解决方案 2:

<%
Response.Cache.SetExpires(DateTime.Parse(DateTime.Now.ToString()))
Response.Cache.SetCacheability(HttpCacheability.Private)
Response.Cache.SetNoStore()
Response.AppendHeader("Pragma", "no-cache")
%>

解决方案 3:

<body onload="history.forward()">

解决方案 4:

<%
response.setDateHeader("Last-Modified", System.currentTimeMillis());
%>

与 Firefox 一样,有功能工具 -> 开始隐私浏览,它不存储任何 session 数据。有什么可以通过 JavaScript 来实现的。

最佳答案

当安全很重要时,您不能依赖客户端。所有浏览器都有不同的历史实现。您应该依赖服务器端解决方案。

关于java - 如何在浏览器中跳过访问页面的历史记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4346125/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com