I currently have an ASP.NET MVC application that exists. I want to add a small mobile friendly section to the site. I want to keep it extremely simple and integrate http://mdbf.codeplex.com/ into my project. Then on Home/Index check if the are mobile, then forward them on to the Mobile Controller (http://mysite.com/mobile/index).
However, I also want to setup if they type http://m.mysite.com it will automatically display mobile/index without having the URL be (http://m.mysite.com/moble/index. Also, let's say I had another action method in the mobile controller. I would want to be able to do http://m.mysite.com/MobileList instead of having to do http://m.mysite.com/Mobile/MobileList
Any thoughts on how to get this done? Would I need to mess with routes? Currently I am just using the default controller/action/id route that comes by default. Again, I am trying to keep this as simple as possible.