I'd like to be able to catch any link in my site that starts with "/@" and handle with a full browser reload.
Something like:
$locationProvider.html5Mode(true)
$routeProvider.when("/@:id",
# window.location.href = [the link's url]
# all others are handled by typical controller/view
I have been able to solve the problem using an attribute/directive on an anchor tag, but I'd like to do this at the url routing level.