angular.js html5mode页面刷新问题

时间:2018-08-15 23:12:20

标签: angularjs apache .htaccess ngroute html5mode

我将angular.js项目转换为html5mode,直到尝试刷新页面之前,一切都工作良好。我做了一些研究,发现它与服务器端有关。

我将<base href="/index.html">添加到我的index.html前面。

然后将$locationProvider.html5Mode(true).hashPrefix('!');添加到我的应用配置中。

并按照其他问题的建议,我将这些行添加到了.htaccess

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]

RewriteRule ^(.*) /index.html [NC,L]

但是我的问题还在。

我该怎么办?

1 个答案:

答案 0 :(得分:0)

我的问题已通过

解决。
<IfModule mod_rewrite.c>
    Options +FollowSymlinks
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_URI} !^/$
    RewriteRule (.*) /#!/$1 [NE,L,R=301]
</IfModule>