AngularJS - Why when changing url address $routeProvider doesn't seem to work and I get a 404 error

前端 未结 2 509
慢半拍i
慢半拍i 2021-02-13 15:01

My $routeProvider is configured like this:

teachApp.config([\'$routeProvider\', \'$locationProvider\', function($routeProvider,       $locationProvi         


        
相关标签:
2条回答
  • 2021-02-13 15:21

    You need to setup your apache to redirect all paths to root.

    When you directly open http://localhost/teach/overview your web server is trying to serve a page from a route that is not defined.

    When, within an angular app, you click on a link with href path of http://localhost/teach/overview, Angular steps in, and instead of letting your browser request a page from the server it intercepts your click event and goes to your routeProvider to see which client-side view to display (this is why they call it "single-page apps"). That's why your links work as long as you try not to open them directly.

    Beside the apache config you might also want to use base tag with href value of /teach/:

    <base href="/teach/" />
    

    so that you can have your routeProvider not constrained by fixed prefix:

    teachApp.config(['$routeProvider', '$locationProvider', function($routeProvider,       $locationProvider) {
        $routeProvider.
            when('/', {templateUrl: 'views/login_view.html'}).
            when('/overview', {templateUrl: 'views/overview_view.html'}).
            when('/users', {templateUrl: 'views/users_view.html'}).
            otherwise({redirectTo: '/'});
        $locationProvider.html5Mode(true);
    }]);
    
    0 讨论(0)
  • 2021-02-13 15:47

    You can also use # in your URLs.

    http://localhost/teach/#/overview
    

    This will not send a request to the server and will instead be intercepted by the Angular $routeProvider.

    0 讨论(0)
提交回复
热议问题