我启用了
locationProvider.HTML5mode(true);
然后我把它放在index.html之上:
<html ng-app="app">
<head>
<base href="/projects/www/#/" />
因此,如果我使用内部链接浏览网站(例如#/ users),一切正常,网址会从projects/www/#/users
重新编写为projects/www/users
但如果我直接通过浏览器访问projects/www/users
我找不到页面。
唯一有效的直接网址是:
projects/www/
这可能是什么?
答案 0 :(得分:0)
好的我修复了它是添加一些服务器端htaccess代码:
RewriteEngine on
RewriteBase /Projects/www
# Don't rewrite files or directories
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
# Rewrite everything else to index.html to allow html5 state links
RewriteRule ^ index.html [L]