First off, from the official Backbone documentation:
http://backbonejs.org/#Router-extend
Note that you'll want to avoid using a leading slash in your route definitions
I would recommend following that pattern
Secondly to solve your problem, what you can do is in your view, bind to the 'click' event of your links as such:
events: {
'click a': 'onClick'
}
where
onClick: function (event) {
event.preventDefault();
event.stopPropagation();
var url = $(event.currentTarget).attr('href');
// the following line depends on how you implemented your app, this is an example
window.app.controller.navigate(url, {trigger: true});
}
what this does now, is that you've intercepted in your view, the element that you use to trigger the onClick method.
If you would provide a bit more information as to what exactly you're trying to achieve, perhaps I can elaborate my answer more.