从网址页面中删除#后刷新angularJS中出现错误404

时间:2018-09-19 12:49:12

标签: angularjs .htaccess angularjs-routing

我的索引文件

 <base href="/"/>

在我的控制器中添加了$ Locatonprovider并像这样重定向

 $location.path('/ui-login');

$locationProvider.html5Mode(true);

.htaccess文件

      RewriteEngine On

      # if an existing  asset or directory is requested go to it  as          it is 
      RewriteCond %{REQUEST_FILENAME} -f [OR]
      RewriteCond %{REQUEST_FILENAME} -d
      RewriteRule ^ - [L]

      # if the requested resource doesn't exist, use index.html
      RewriteRule ^ /index.html

我的网址

http://localhost/index.html

注意:这是可行的,但问题是我刷新页面时未找到错误404文件

输出:

enter image description here

0 个答案:

没有答案