javascript - How to change visible address

one text

Solution:

I suspect this is not possible, because it would be an incredible security concern if it were. For example, you could make a page look like a bank login page, and make the URL in the address bar look like, like the real bank

When the main domain is changed by whatever event the site is full reloaded 👌🏼

But you can change the href and slash sub routes:

window.history.pushState("object or string", "Page Title", "/newURL");

Source