I have an Angular application running under a domain, and I have a different application running under the same domain on a subroute (/blog). If I try to open the subroute in a browser, it opens correctly. But if I open the main application first, and then I try to open the subroute, it redirects to the main application. It doesn't seem to reach the subroute application at all. The router of the main application is configured to catch the invalid subpages with the following route:
{ path: '**', redirectTo: '/' },
Is there a way to ignore the '/blog' route in the main application, but catch every other invalid route?