如何在不區分大小寫的角度路由?例如,如果我的路線爲www.example.com/home,如下所示:如何使路由與角度不區分大小寫
$routeProvider
.when('/home', {
templateUrl: 'pages/home/home-page.tmpl.html',
controller: 'HomeCtrl',
controllerAs: 'home'
});
我該如何設置它,以便它能夠正常工作。
www.example.com/首頁| www.example.com/HOME | www.example.com/HoMe等?
我認爲這取決於服務器... –
有沒有辦法做到這一點在角?還是需要改變與服務器的情況? –