Mauro Cappelloni
Mauro Cappelloni

Reputation: 143

Hiding routes on url Angular 2+

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!

Upvotes: 8

Views: 15086

Answers (1)

Narm
Narm

Reputation: 10834

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 });

Upvotes: 21

Related Questions