下記URLのstackさんを参考にやってみた。っていってもほぼそのまんまだけど。 http://stackoverflow.com/questions/20969835/angularjs-login-and-authentication-in-each-route-and-controller ■constants.js(ログインが必要なページ(URI)をここで定義しておく) app.constant('requireAuth', [ '/admin/dashboard' ]); ■app.js app.run(['$rootScope', '$location', 'auth', 'requireAuth', function($rootScope, $location, auth, requireAuth) { // login check $rootScope.$on('$rout