I have an old app with url formatted this way
localhost/#segment=12
I need to catch these in the new app (angular 7) and redirect to
segment/:id
Really wanted a matcher+redirect in routes to work but matcher takes UrlSegment, not entire url, so all i get is an empty array to work with.
Tried catch all and redirect in controller but id is lost.
The router malformedUriErrorHandler doesn't trigger.
Running out of ideas.