最近做一个web应用,有个需求需要删除angular路由中的#号。
例如:
http://example.com/
http://example.com/#/about
http://example.com/#/contact
需要改成
http://example.com/
http://example.com/about
http://example.com/contact
$locationProvider.html5Mode(true);
然后再index.html 的header中,指定一个base:
<base href="/">
这就ok了,需要的通知自己尝试一下吧!
原文链接:https://www.f2er.com/angularjs/148825.html