次のルートを設定しています。
context.MapRoute(
"content_article",
"A{rk}/{title}",
new { controller = "Server", action = "Article" },
new { rk = @"^[\dA-Z]{3}$" }
);
context.MapRoute(
"content_contentBlock",
"C{rk}/{title}",
new { controller = "Server", action = "ContentBlock" },
new { rk = @"^[\dA-Z]{3}$" }
);
context.MapRoute(
"content_favoritesList",
"F{rk}/{title}",
new { controller = "Server", action = "FavoritesList" },
new { rk = @"^[\dA-Z]{3}$" }
);
私が組み合わせることができる方法はありますか?
"A{rk}/{title}",
"C{rk}/{title}",
"F{rk}/{title}",
URLがA、C、またはFで始まる場合に実行されるインデックスのアクションを使用して、単一のルートに変換しますか?