我正在使用angularjs的路由功能为我的网站和html5mode(true)隐藏网址上的hashbang,现在我有一个简单的问题我想访问一个目录(Access /)退出路由,如果我写直接" www.example.com/Access"在URL上显然它将重定向到脚本文件上的redirectTo网站。
我想使用新文件访问此目录,而不是通过ng-view。
我的路由控制器:
$locationProvider.html5Mode(true);
$routeProvider.when('/'+PAGINE.Home,{templateUrl:'pagine/Pagina_iniziale.html',controller:'Pagina_iniziale'})
.when('/'+PAGINE.Social,{templateUrl:'pagine/Social_news.html'})
.when('/'+PAGINE.Catalogo,{templateUrl:'pagine/Catalogo.html'})
.when('/'+PAGINE.Partner,{templateUrl:'pagine/Partner.html'})
.when('/'+PAGINE.Faq,{templateUrl:'pagine/Faq.html'})
.when('/'+PAGINE.Contatti,{templateUrl:'pagine/Contatti.html'})
.otherwise({redirectTo:'/'+PAGINE.Home});
如何访问从路由退出的Access页面?