I have three controllers, Home
, Blog
and Misc
.
When I type mydomain.com/Home
at the address bar, the browser displays the view for the home controller.
When I type mydomain.com/Blog
at the address bar, the browser displays the view for blog controller.
And when I type mydomain.com/anything
(not Home
nor Blog
) the browser displays the view for the misc controller.
How to map route for above?
Sorry for Bad English.
Thank You.