Я хочу, чтобы все запросы к http://foo.com/test/{the-rest-of-the-url} отображались на http://foo.com/{the-rest-of-the-url}
Как то так ...
routes.MapRoute(
name: "Test",
url: "test/{controller}/{action}/{id}",
defaults: new { controller = "Channel", action = "Index", id = UrlParameter.Optional }
);
Но, конечно, это не сработало.