Basically I'm asking this gentleman's question: How to disable static url in angular ui-router?
My DOM structure looks like this:
<div ui-view>
<a href="/link-to-non-angular-page">Click Me</a>
</div>
I want people to be able to click that "Click Me" link and have it force the page to take you to that page as if Angular and UI Router didn't exist, as a standard HTTP page request with everything reloading.
Is that doable?