In my Angular application, I want to support all url's in case insensitive manner and also don't want to change the route name to lowercase.
Example: it should support all URL's along with Query Parameters
localhost:1029/aboutus
localhost:1029/aboutUS
localhost:1029/AboutUs
localhost:1029/ABOUTUS
I have checked this question and many like this but problem is they change URL into lowercase and navigate, I want to navigate but without changing the URL.