I have a url like this:
http://localhost:4200/activar_cuenta/5sadaaeasdas
how change my url to http://localhost:4200/ witouth reload the page? only change the browser url.
thanks
asked Apr 5, 2020 at 6:16
-
1Are you use Angular or Pure Js?Suhag Lapani– Suhag Lapani2020年04月05日 06:21:27 +00:00Commented Apr 5, 2020 at 6:21
1 Answer 1
Try this:
window.history.pushState(null, '', '/');
answered Apr 5, 2020 at 6:31
Sign up to request clarification or add additional context in comments.
Comments
lang-js