AngularJS: how to enable $locationProvider.html5Mode with deeplinking

前端 未结 5 1349
终归单人心
终归单人心 2020-11-27 12:02

When enabling the html5Mode in AngularJS via $locationProvider.html5Mode(true), navigation seems to be skewed when you land on a page deeper in the site.

<
5条回答
  •  孤城傲影
    2020-11-27 12:39

    My problem solved with these :

    1- Add this to your head :

    
    

    2- Use this in app.config

    $locationProvider.html5Mode(true);
    

提交回复
热议问题