How do I make routes case insensitive with Angular

Viewed 5625

How can I make routing in angular case insensitive? For example if I have a route for www.example.com/home which looks like this:

$routeProvider
  .when('/home', {
    templateUrl: 'pages/home/home-page.tmpl.html',
    controller: 'HomeCtrl',
    controllerAs: 'home'
  });

How can I also set it up so that it would work with.

www.example.com/Home | www.example.com/HOME | www.example.com/HoMe etc?

2 Answers
Related