Hiding routes on url Angular 2+

Mauro Cappelloni picture Mauro Cappelloni · Mar 21, 2018 · Viewed 9.7k times · Source

So I am trying to hide my routes on the url, that means i want my app to show always the url as being in the root app, for example:

"www.foo.com"

instead of

"www.foo.com/login"

Its there any way to achieve this in angular 2?

Thanks in advance for the help!

Answer

Narm picture Narm · Mar 21, 2018

What you are looking for is Angulars skipLocationChange, this is what Angular refers to as "NavigationExtras". Here is the documentation: Angular docs on NavExtras

// Navigate silently to /view
this.router.navigate(['/view'], { skipLocationChange: true });