将默认页面设置为路径IIS 7

时间:2012-11-06 18:54:20

标签: iis-7

如何将默认文档设置为子目录页面? ie而不是default.htm,比如/myWebApp/newDefault.htm?

我想要的页面位于wwwroot

目录中

非常感谢

1 个答案:

答案 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