I've successfully managed to route the URL www.mysite.com/home/directory to the home page:
Routes.MapRoute(
"forbidden1",
"{controller}/directory",
new {
controller = "Home",
action = "Index",
});
...but how do I do the same with URL www.mysite.com/directory since mysite.com is home???