Is it possible to stop a browser storing a URL in its history?

后端 未结 3 1774
我寻月下人不归
我寻月下人不归 2021-01-03 23:43

When a user clicks to a page using a link on a previous page, is it possible for the target page to, on its own accord, remove its own URL from browser history (without sign

3条回答
  •  庸人自扰
    2021-01-04 00:20

    Using javascript, you could use replace method of window.location :

    window.location.replace(String url)
    

    Check the documentation here for more details

提交回复
热议问题