I am using Meteor 1.0 and iron: router. I am currently redirecting users with the following two route definitions:
Router.route('/', function () { this.render('home_page'); }); Router.route('/about', function () { this.render('about'); });
How to determine the route for undefined routes (error 404)? For example, if the user goes to the URL "/ blablabla", I want him to be redirected to / 404, which would refer to the template.
source share