My HomeController is controlling some pages like 'Index' and some others like 'Contact', 'About Us'.
But, if I type:
www.blabla.com/
the 'Index' will be called and it works.
But, if I type:
www.blabla.com/AboutUs
it doesn't work at all! It just works if I type:
www.blabla.com/Home/AboutUs
How can I make all the actions in HomeController work without typing "Home" before them?