我正在尝试更改我的web api的根网址以运行操作,但是在使用尝试映射时,我在运行时收到一条错误消息,指出我无法使用/
或~
作为我的路线。
config.Routes.MapHttpRoute("RootInformation", "/", new {controller = "Core", action = "GetInformation"});
如何添加此根URL路由
答案 0 :(得分:4)
试试这个:
config.Routes.MapHttpRoute(
name: "RootInformation",
routeTemplate: "",
defaults: new
{
Controller = "Core",
Action = "GetInformation"
}
);