Lower Case URLs and ASP.NET MVC
Posted by: K. Scott Allen,
on 01 Oct 2009 |
View original | Bookmarked: 0 time(s)
It sounds like an easy question - How do I make my ASP.NET MVC application generate lowercase URLs? Using lowercase URLs is an SEO best practice, and something you can easily enforce with a tool like URLRewrite. But, the action links generated by the MVC framework generally contain upper case letters (since controller and action names are generally PascalCased). First, let me say that Graham ONeale and Nick Berardi have already solved this problem in a foolproof manner. What I am trying below...