I\'m trying to redirect old URLs (links in email templates) from a previous site to another route like this:
if (route.url.indexOf(\'/#/\') !== -1) {
thi
If you are generating routerLink through an array of routes from .ts file. And your routes contain resolvers...
This
{{route}}
and This
{{route}}
and this too
{{route}}
then don't try this...with resolver...It won't work...
The safer way is simply create a function in ts file.
navigate(link: string): void
{
this.router.navigate([link]);
}
and call this function from html...like this
{{route}}
It will work fine....Happy Coding!!!