快速ASP.NET路由问题

Cam*_*ron 4 asp.net-mvc routing

如何才能将其/Home/About/转换为/About/使用Global.aspx文件中的规则?

Ser*_*ier 6

   public static void RegisterRoutes(RouteCollection routes)
    {
      routes.MapRoute(
          "About", // Route name
          "About", // URL
          new { controller = "Home", action = "About" });

      ...

    }
Run Code Online (Sandbox Code Playgroud)

@Scott:谢谢.固定它.