Asp.Net包含一种在web.config中指定默认文档的机制:
<defaultDocument>
<files>
<remove value="default.aspx" />
<remove value="Default.asp" />
<remove value="index.html" />
<remove value="Default.htm" />
<remove value="index.htm" />
<remove value="iisstart.htm" />
<remove value="landing.aspx" />
<remove value="views.aspx" />
<remove value="index.aspx" />
<add value="landing.aspx" />
<add value="views.aspx" />
<add value="index.aspx" />
</files>
</defaultDocument>
是否有机制来检索将用于某个本地路径请求的文档?
请求可以是:/MySite/
(index.aspx),/MySite/Views/One
(views.aspx),/MySite/Pages/PageOne
(landing.aspx)。每个目录都包含一个不同的“默认文档”。
答案 0 :(得分:0)
只需在每个目录中添加一个Web.Config文件,其中包含您要覆盖的设置,在本例中为defaultDocument设置