我们如何删除#sine并使用locationprovider这是我的代码我们使用它但它无法正常工作
<base href="/" />
var app = angular.module('quizApp', ['ngRoute', 'ngSanitize'])
angular.module('quizApp').config(['$routeProvider','$locationProvider',function ($routeProvider,$locationProvider) {
var routes = [{
url: '/home',
template: 'templates/quiz.html',
controller: 'quizCtrl'
}];
routes.forEach(function (r, index) {
$routeProvider.when(r.url, { templateUrl: r.template, controller: r.controller });
});
$routeProvider.otherwise({ redirectTo: '/home' });
$locationProvider.html5Mode(true);
}]);