如何将默认文档设置为子目录页面? ie而不是default.htm,比如/myWebApp/newDefault.htm?
我想要的页面位于wwwroot
目录中非常感谢
答案 0 :(得分:0)
你看过URL重写吗?
http://www.iis.net/learn/extensions/url-rewrite-module/using-the-url-rewrite-module
或者,如果您使用的是ASP.NET,您可以执行以下操作:
public override void ProcessRequest(HttpContext context) {
context.Response.Redirect("myWebApp/newDefault.htm", true);
}
-M