I am trying to setup my MVC application to only accept lowercase URLs with routes.LowercaseUrls = true;
within route config file but It seems it isn't working the way it is supposed to be.
For example I can access my MVC web app home page with both of below URLs.
http://localhost:58482/Home/indeX
http://localhost:58482/home/index
I want my application to change any uppercase letter in URL to lowercase. Is it possible?
Your help is much appreciated.