Emberjs only redirect to default route if no subroute is specified
问题 I'm trying to redirect /dashboard/ to /dashboard/reach/demographic if the url hits /dashboard/ . Problem is, I still get redirected to /dashboard/reach/demographic/ if I hit a subroute like **/dashboard/traffic. What is the Ember way of doing this? Here is my code: (function() { App.Router.map(function(match) { this.resource('dashboard', function() { this.resource('traffic', function() { this.route('visits'); this.route('pageviews'); return this.route('duration'); }); return this.resource(