I have a situation where the user is to be routed to a directory structure path within angular routing mechanism. For example: The host is abc.com. The angular routing will work on this host. Then I have defined a path in angular routing with pattern matching such as "**" which matches every pattern if none is found. But I have a situation where I need to redirect to "abc.com/safari". The angular routing is blocking this and redirecting me to the "**" path and that component.
Have researched on stack overflow and found this post. I am trying to implement these options, but to no avail. Can someone please help!!
How can I activate the abc.com/safari route without changing my host and angular routing blocking it?