Flow Router pass through to server side route

I have route defined (using Picker) on the server.

When I directly enter this route in the browser URL field, it works just fine. However, if I have an anchor tag () with this URL and click this link in my app, Flow Router is intercepting this click and giving a not found (because this route is not defined on the client side).

So the question is: How can I make Flow Router pass through a route click to the server.

This was possible in Iron Router, but I’m not seeing a clear way to do this with Flow Router.

Okay…I have a solution…give the anchor tag a target="_blank". This works, but is less than ideal I think.