I just started using ASP.NET MVC and I have two routing questions.
How do I set up the following routes in ASP.NET MVC?
domain.com/about-us/ domain.com/contact-us/ domain.com/staff-bios/
I don't want to have a controller specified in the actual url in order to keep the urls shorter. If the urls looked liked this:domain.com/company/about-us/ domain.com/company/contact-us/ domain.com/company/staff-bios/
it would make more sense to me as I can add a CompanyController and have ActionResults setup for about-us, contact-us, staff-bios and return appropriate views. What am I missing?
What purpose does the name "Default" name have in the default routing rule in Global.asax? Is it used for anything?
Thank you!