Asp.Net MVC 4清理URL从子目录加载index.html

时间:2016-11-28 17:52:36

标签: asp.net-mvc url-routing

我是一个ASP.NET MVC 4项目,我有一个子目录" test"在根目录中,它包含index.html

我想要调用返回index.html的干净URL

当我打电话

http://localhost:8080/

我从我的" test \ index.html"

返回了内容

2 个答案:

答案 0 :(得分:3)

应调整RouteConfig子目录中的App_Start类,以使默认控制器为Test。放置您的测试' Views目录中的目录,如果您还没有,请创建TestControllerRouteConfig应如下所示:

public class RouteConfig
{
    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Test", action = "Index", id = UrlParameter.Optional }
        );
    }
}

答案 1 :(得分:1)

最简单的方法是将“test / index.html”作为默认文档放在IIS中。

如果您真的想以编程方式执行此操作,则必须创建一个操作来处​​理您的请求并将默认路由映射到该请求。

路线:

routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "StaticFile", action = "Index", id = UrlParameter.Optional }
        );

控制器/操作:

public class StaticFileController : Controller
{
    // GET: StaticFile
    [AllowAnonymous]
    public FileContentResult Index()
    {
        string imageFile = System.Web.HttpContext.Current.Server.MapPath("~/Test/Index.html");
        byte[] bytes = System.IO.File.ReadAllBytes(imageFile);

        return File(bytes, "text/html");
    }
}