Reputation: 597
I want to hide routes from browser's address bar.
Ex:
http://localhost:4200/user/profile
to
http://localhost:4200
can we hide routes?
Upvotes: 0
Views: 3303
Reputation: 8122
You can do that by adding : { skipLocationChange: true })
after navigation.
Read more about navigation extras here .
I created the following stackblitz example that shows how to achieve what you are looking for.
As mentioned in comments, This feature is not recommended.
Upvotes: 2