How to change Swagger-Net root url from "/swagger" to root?

286 Views Asked by At

I"m using swagger-net. By default, the swagger UI will be "/swagger", how do I change it to root?

Feel like what I'm doing now is a hack

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return Redirect("/swagger");
        //return View();
    }
}
1

There are 1 best solutions below

0
On

Found a solution. Added the below route mapping to WebApiConfig.cs

config.Routes.MapHttpRoute(
    name: "Swagger UI",
    routeTemplate: "",
    defaults: null,
    constraints: null,
    handler: new RedirectHandler(SwaggerDocsConfig.DefaultRootUrlResolver, "swagger/ui/index"));