我希望能够捕获我网站中以“/@”开头的任何链接,并通过完整的浏览器重新加载来处理。
就像是:
$locationProvider.html5Mode(true)
$routeProvider.when("/@:id",
# window.location.href = [the link's url]
# all others are handled by typical controller/view
我已经能够使用锚标记上的属性/指令来解决问题,但我想在 url 路由级别执行此操作。