MapHttpRoute web API的根URL

时间:2013-10-21 08:10:41

标签: asp.net asp.net-web-api

我正在尝试更改我的web api的根网址以运行操作,但是在使用尝试映射时,我在运行时收到一条错误消息,指出我无法使用/~作为我的路线。

config.Routes.MapHttpRoute("RootInformation", "/", new {controller = "Core", action = "GetInformation"});

如何添加此根URL路由

1 个答案:

答案 0 :(得分:4)

试试这个:

config.Routes.MapHttpRoute(
        name: "RootInformation", 
        routeTemplate: "", 
        defaults: new 
        {
             Controller = "Core", 
             Action = "GetInformation"
        }
 );