How can I handle the error
Uncaught Error: No route matched the URL \'...\'
and show a custom 404 page?
Note: This questi
You could try adding a catch-all route at the end of your router:
App.Router.map(function() { this.resource('post', ...); this.resource('user', ...); this.route('catchAll', { path: '/*' }); }); App.CatchAllRoute = ...