我创建了一个名为test的虚拟目录,其路径为D:\ Proj \ myapp,默认文档为login.aspx,现在我创建了另一个名为test2的虚拟目录,其中包含SAME路径D:\ Proj \ myapp但是使用不同的默认文档la_login.aspx然后从我首先创建的虚拟目录中选择我浏览时的默认文档....在IIS 5和IIS 6中我能够获得不同的默认页面但在IIS 8上它被重定向到相同的默认文档。
答案 0 :(得分:0)
转到 - %systemroot%\ system32 \ inetsrv \ config 打开applicationhost.config
更新默认文档的虚拟目录的位置标记,如下所示。
<location path="www.yoursite.com" overrideMode="Allow">
<system.webServer>
<directoryBrowse enabled="false" showFlags="None" />
<handlers accessPolicy="Read, Script" />
<defaultDocument enabled="true">
<files>
<clear />
<add value="newPage.aspx" />
</files>
</defaultDocument>
</system.webServer>
</location>