Routing and static pages

Hi all,

i would like to href a page of the route in a new tab.
Is there a method to not return to home cause of routing ?

in page A :

link to b

this code return to home in the new tab.

  1. Is there any method to link to a new page static and exit from routing? for example son FAQ page that it should not need routing to see these pages from external?

if you want to bypass the Aurelia.Router you can still use old JS syntax.

window.location = "link_to_static.html"

see http://aurelia.io/docs/routing/handling-links#skipping-click-hijacking
router-ignore should do the trick

2 Likes