0
在這一刻我有下圖路線正則表達式,以避免控制器名稱「圖像」
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional },// Parameter defaults
new { controller = @"[^\.]*" } // Parameter constraints
);
我定義的約束是控制器= @「[^] *」
我需要一個約束以避免名稱爲「圖像」的控制器。
我該怎麼做?