Angular Routing ngRoute fails to pull my other HTML files
问题 So after reading here and there on MEAN, I decided to make my first MEAN application which is pretty small, all seems to work except the routeing to make my app a one-page app. Any help would be much appreciated! app.config(function($routeProvider){ $routeProvider .when('/', { templateUrl: 'main.html', controller: 'mainController' }) .when('/login', { templateUrl: 'login.html', controller: 'authController' }) .when('/register', { templateUrl: 'register.html', controller: 'authController' });