Laravel 5 + AngularJS html5Mode

前端 未结 1 1809
盖世英雄少女心
盖世英雄少女心 2021-01-13 04:03

I\'m developing a project using Laravel 5 and AngularJS. I want to enable

$locationProvider.html5Mode(true);

and stop the page from reloadi

相关标签:
1条回答
  • 2021-01-13 04:26

    I changed my route.php to

    Route::get('/', function () { 
        return View::make('index'); 
    });
    
    
    Route::get('{all}', function () { 
        return View::make('index'); 
    });
    

    And added a base <base href="/"> to my index.php Everything works now and the page doesn't refresh.

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