为iis 8中具有相同项目路径的2个不同目录设置不同的DEFAULT页面

时间:2015-01-29 06:48:49

标签: asp.net iis deployment server iis-8

我创建了一个名为test的虚拟目录,其路径为D:\ Proj \ myapp,默认文档为login.aspx,现在我创建了另一个名为test2的虚拟目录,其中包含SAME路径D:\ Proj \ myapp但是使用不同的默认文档la_login.aspx然后从我首先创建的虚拟目录中选择我浏览时的默认文档....在IIS 5和IIS 6中我能够获得不同的默认页面但在IIS 8上它被重定向到相同的默认文档。

1 个答案:

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