重新加载页面在启用AngularJS HTML5模式后显示404错误消息

时间:2016-06-14 12:13:45

标签: javascript angularjs html5 .htaccess

我为我的应用启用了HTML5模式。我已经为配置添加了以下代码,如下所示

return app.config(['$routeProvider','$locationProvider', function($routeProvider,$locationProvider) {

$locationProvider.html5Mode(true);
$locationProvider.hashPrefix = '!';

$routeProvider.when('/', {
    templateUrl: '/pages/index.html',
    controller: 'indexCtrl'
});
$routeProvider.when('/about',{
    templateUrl: '/pages/about.html',
    controller: 'AboutCtrl'
});

我也在.htaccess文件中做了一些更改,如下所示

RewriteEngine On 
Options FollowSymLinks

RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /#/$1 [L]

此外,我在index.html中也做了一些更改,也是谎言

<base href="/">

1 个答案:

答案 0 :(得分:0)

你设置了

吗?
else
头标记内的

标记?

$location Relative Links