当前位置:主页 > 网页前端 > AngularJS >

AngularJS删除路由中的#符号的方法

时间:2020-12-05 12:46:48 | 栏目:AngularJS | 点击:

最近做一个web应用,有个需求需要删除angular路由中的#号。

例如:

http://example.com/
http://example.com/#/about
http://example.com/#/contact

需要改成

http://example.com/
http://example.com/about
http://example.com/contact

这个是angular默认自带的,所以想要删除需要配置一下:

$locationProvider.html5Mode(true);

然后再index.html 的header中,指定一个base:

<base href="/">

您可能感兴趣的文章:

相关文章