vs.net が作成するデフォルト ルートを使用したくありません。
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
www.example.com/ ページを取得するためのルートのみが必要ですが、それは何ですか? (注: www.example.com/default を単純な www.example.com だけで HomeController Action=Index にマップしたくはありません)。