After reading about the case sensitivity of query string keys from here, I realized my query pertains to the case sensitivity of query string values. Is there a way to make query string values case insensitive? Is it possible to receive the same result when accessing the following two URLs?
http://eventabc.com/test/#/?layout=1&name=WCC
and
http://eventabc.com/test/#/?layout=1&name=wcc
If there is a solution, please advise me on how to achieve this using angularjs.