I have an angular app running lets say in "www.mydomain.com" but I also have another app running in "www.mydomain.com/another" (an nginx server handles the routing).
So, what I want to achieve is to put an iframe pointing to "*www.mydomain.com/another*" to load the "another app", but instead, the angular router is trying to find a component for the "another" segment (because it's the same domain) and obviously is failing because there isn't any component defined for that route.
<iframe style="width: 100%;" [src]="www.mydomain.com/another"></iframe>
Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'another'
Any idea on how could I tell to the router of the app containing the iframe that "this is not an internal route, just hit the proxy with the url and load the iframe as it should be"?
Thanks in advance