使用AngularJSHTML 5模式重新加载页面会产生错误的GET请求
我想为我的应用程序启用HTML 5模式。我已经为配置放置了以下代码,如下所示这里:return app.config(['$routeProvider','$locationProvider', function($routeProvider,$locationProvider) {
$locationProvider.html5Mode(true);
$locationProvider.hashPrefix = '!';
$routeProvider.when('/', {
templateUrl: '/views/index.html',
controller: 'indexCtrl'
});
$routeProvider.when('/about',{
templateUrl: '/views/about.html',
controller: 'AboutCtrl'
});
如你所见,我用了$locationProvider.html5mode我更改了我在ng-href排除/#/.
问题
现在,我可以去localhost:9000/并查看索引页并导航到其他页面,如localhost:9000/about.
但是,当我刷新localhost:9000/about一页。我得到以下输出:Cannot GET /about
如果我看一下网络呼叫:Request URL:localhost:9000/aboutRequest Method:GET
如果我第一次去localhost:9000/然后单击导航到/about我得到:Request URL:http://localhost:9000/views/about.html
它完美地呈现了页面。
当我刷新时,如何启用角获取正确的页面?