如何从浏览器历史记录中隐藏 URL

发布于 2024-12-27 11:07:56 字数 147 浏览 2 评论 0原文

是否有任何 http 标头或其他内容可以阻止页面保存在浏览器历史记录中?

事实: 我不会使用:

  • window.location.replace(URL);
  • POST 而不是 GET;

    谢谢。

  • Is there any http header or something to prevent the page to be saved on the browser history?

    Facts:
    I'm not going to use:

  • window.location.replace(URL);
  • POST instead of GET;

    Thanks.

  • 如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

    扫码二维码加入Web技术交流群

    发布评论

    需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

    评论(1

    半透明的墙 2025-01-03 11:07:56

    不会。浏览器历史记录 100% 由浏览器设置控制,并大致由 HTTP 中的缓存“规则”指导。

    简而言之,大多数浏览器都会执行以下操作:

    1. 所有 GET 请求都将存储在浏览器历史记录中
    2. 所有 POST 请求 URL 将存储在浏览器历史记录中(POST数据不会)
    3. URL 的 AJAX 请求可能不会存储在浏览器历史记录中,但有些可能会

    No. Browser history is 100% controlled by the browser's settings, and roughly guided by caching "rules" in HTTP.

    In a nutshell, most browsers will do the following:

    1. All GET requests will be stored in the browser history
    2. All POST request URLs will be stored in the browser history (POST data will not)
    3. AJAX requests for URLs probably won't be stored in the browser history, but some may
    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文