Case sensitivity with angularjs ui router

angular ui router case insensitive In this video we will discuss how to make routes that are configured using ui-router case-insensitive. The routes that are configured using ui-router are case sensitive by default. For example, consider the state below. Notice the url (/home) is lowercase. $stateProvider .state(“home“, { url: “/home“, templateUrl: “Templates/“, controller: “homeController“, controllerAs: “homeCtrl“ }) If we type the following URL in the
Back to Top