emberjs using multiple paths / urls for one route
问题 In Ember I can use this: App.Router.map(function() { this.route('accomodations'); }); so if one goes to /accomodations it will load that view. I can also add: App.Router.map(function() { this.route('accomodations', { path: '/travel' }); }); so if one goes to /travel, it will go to the same view. I want to be able to have /accomodations and /travel go to the same view? is this possible? I know that this: App.Router.map(function() { this.route('accomodations'); this.route('accomodations', {