3

I am new to angular. And I am facing the issue to redirect to external route. I want to redirect from my angular app to other MVC application. Like: www.abc.com/angularapp to www.abc.com/mvcapp

Please help how to redirect to these kind of routes

Anonymous
  • 49
  • 1
  • 5

3 Answers3

4

It's funny that you've tagged this with so many angular tags. This is a vanilla html / javascript question. You can navigate in the html with an <a></a> tag.

<a href="https://www.google.com"><button>Click Me!</button></a>

or in javascript with window.location.href

<button (click)="redirect()">Click Me!</button>
redirect() {
  window.location.href = 'https://www.google.com';
}
Chris Hamilton
  • 9,252
  • 1
  • 9
  • 26
0

you can check this implementation

angular router to external links

Juri
  • 1,531
  • 2
  • 20
  • 43
-1

you can use the following


<a href="https://www.facebook.com"><button>facebook</button></a>