我是一个ASP.NET MVC 4项目,我有一个子目录" test"在根目录中,它包含index.html
我想要调用返回index.html的干净URL
当我打电话
我从我的" test \ index.html"
返回了内容答案 0 :(得分:3)
应调整RouteConfig
子目录中的App_Start
类,以使默认控制器为Test
。放置您的测试' Views
目录中的目录,如果您还没有,请创建TestController
。 RouteConfig
应如下所示:
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");
}
}