私のメインの開始ページはApplicantProfile
であるため、デフォルトのルートは次のようになります。
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "ApplicantProfile", action = "Start", id = UrlParameter.Optional }
);
このコントローラーにはパブリック アクセス用のインデックスがありませんが、他のすべてのコントローラーにはあります。私が望むのは、ワイルドカードに相当するものです。
routes.MapRoute(
name: "Others",
url: "{controller}/{action}/{id}",
defaults: new { controller = "*", action = "Start", id = UrlParameter.Optional }
);
どうすればこれを達成できますか?