I have a Router set up with accounts, and account/:account_id options. When the user lands on the index page of my app I transition them to the accounts route.
S
With latest Ember (1.0.0-RC-6), this works perfectly.
Router:
this.resource('accounts', function () { this.resource('account', {path: '/:account_id'}); });
To redirect:
this.transitionToRoute('account', Social.Account.find(1))