エリアのコントローラーフォルダーにサブフォルダーがあります
コントローラ
- API
- ユーザーコントローラー
- 製品
- product1コントローラー
ユーザーが要求したときにproduct1コントローラーにアクセスしたいhttp://mysite/api/products/product1/Index
とのようなビューフォルダ
- ビュー
- API
- ユーザー
- 製品
- 製品1
- API
私の apiAreaRegistration.cs はこのように
public class apiAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "api";
}
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"api_default",
"api/{controller}/{action}/{id}",
new { controller = "Offers", action = "Index", id = UrlParameter.Optional },
new string[] { "TracerAPI.Areas.api.Controllers" }
);
}
}
ありがとうございます。