ngRoute 403,在自己的服务器上拒绝访问

时间:2013-12-01 23:18:31

标签: angularjs

当我尝试访问与主模板文件夹不在同一文件夹中的模板文件时,出现拒绝访问错误。如何解决这个问题?我的代码是这样的:

disputairApp.config(['$routeProvider',
function($routeProvider) {
$routeProvider.
    when('/dichtgetikt/disputair/test2/', {
        templateUrl: 'test/test.html',
        controller: 'userCtrl'
    }).
    otherwise({
        templateUrl: 'template.html',
        //controller: 'userCtrl'
    });
}
]);

“否则”确实有效,但第一个没有。

1 个答案:

答案 0 :(得分:0)

当您尝试转到URL时,是否使用了哈希?

/#/ dichtgetikt / disputair / TEST2 /

请参阅http://docs.angularjs.org/guide/dev_guide.services。$ location并查看配置部分以了解选项。

当我使用“否则”时,我会这样做。

otherwise({redirectTo: '/whatever'});

的Darryl