0

次のルートがあります。

   routes.MapRoute(
      name: "One",
      url: "admin/{id}",
      defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
   );
   routes.MapRoute(
      name: "Two",
      url: "home/{id}",
      defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
   );

これらのルートを 1 つのルートに結合して、両方が「ホーム」コントローラーに向かう方法はありますか?

4

1 に答える 1