我已经完成了$locationProvider.html5Mode(true);
,但它不起作用。每当我访问http://example.com
它时,它都会转到http://example.com/#!/
. 代码在这里给出:
var myApp = angular.module('myApp', ['ui.router', 'ui.bootstrap']);
myApp.config(['$qProvider', function ($qProvider) {
$qProvider.errorOnUnhandledRejections(false);
}]);
myApp.config(function($stateProvider, $urlRouterProvider,$locationProvider) {
// For any unmatched url, redirect to EXTRANET home page
$urlRouterProvider.otherwise('/');
// Now set up the states
$stateProvider
.state('listrole', {
url: "/list-role",
views: {
'main-content': {
templateUrl: rootUrl+ 'views/main.html',
controller: 'rolesCtrl'
}
}
})
$locationProvider.hashPrefix('');
$locationProvider.html5Mode(true);
});
我也添加了更新$locationProvider.hashPrefix('');
,但没有区别。另外让我告诉你,我在地址栏中输入地址并按回车。我做得对吗?浏览器如何发现它不需要从服务器刷新?
更新#2
理想情况下,我希望 URL ashttp://example.com
和http://example.com/#!/list-role
to http://example.com/list-role
。现在http://example.com/list-role
给 404
更新#3
如果有帮助,我正在使用 nginx 代理。
更新#4
已擦除缓存。现在我可以看到http://example.com
而不是http://example.com/#!
但仍然http://example.com/list-role
给出 404