如何将默认文档设置为子目录页面?即代替default.htm 之类的/myWebApp/newDefault.htm?
我想要的页面在 wwwroot 的目录中
非常感谢
你看过 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