Web.Config配置特定文件和子目录
通过使用具有适当的 path 属性的 <location> 标记,可以将配置设置应用于特定的资源。path 属性可用于标识要应用唯一配置设置的特定文件或子目录。在 path 属性中只能使用一个文件路径。path 属性可以从指示应用程序根目录的“~/”快捷方式开头。有关更多信息,请参见 ASP.NET 网站路径。 例如,下面的示例配置文件在三个级别指定设置:
<configuration> <system.web> <sessionState cookieless="true" timeout="10"/> </system.web> <!-- Configuration for the "sub1" subdirectory. --> <location path="sub1"> <system.web> <httpHandlers> <add verb="*" path="sub1" type="Type1"/> <add verb="*" path="sub1" type="Type2"/> </httpHandlers> </system.web> </location> <!-- Configuration for the "sub1/sub2" subdirectory. --> <location path="sub1/sub2"> <system.web> <httpHandlers> <add verb="*" path="sub1/sub2" type="Type3"/> <add verb="*" path="sub1/sub2" type="Type4"/> </httpHandlers> </system.web> </location> </configuration> |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |