如何在.NET Core中指定wwwroot资源的路由?

时间:2016-11-06 15:47:36

标签: c# asp.net-mvc-routing asp.net-core-mvc

如何为wwwroot资源指定路由?我为我的主控制器编写了默认路由,如下所示:

 app.UseMvc(routes =>
        {
            routes.MapRoute(
               name: "default",
               template: "{controller=Post}/{action=Index}");
        });

它运行正常并从我的wwwroot / images目录加载资源 enter image description here

但是当我试图使用另一个控制器时,它会在开头添加控制器前缀。 enter image description here

0 个答案:

没有答案