gpt4 book ai didi

asp.net - web.config部分的单独配置文件

转载 作者:行者123 更新时间:2023-12-03 09:44:50 26 4
gpt4 key购买 nike

是否可以为web.config的特定部分使用单独的配置文件?具体来说,我想将IIS 7的重写部分从web.config中移出,并移入它自己的配置文件中。

最佳答案

您当然可以将重写规则和映射移到单独的文件中:

Storing URL rewrite mappings in a separate file

<system.webServer>
  <rewrite>
    <rewriteMaps configSource="rewritemaps.config" />
    <rules configSource="rewriteRules.config" />
  </rewrite>
</system.webServer>
此外,您可以将许多配置节移至其自己的文件中:

<appSettings configSource="appSettings.config" /> [Docs]

<connectionStrings configSource="connectionStrings.config"/> [Docs]

<pages configSource="pages.config"/> [Docs]


有关更多信息,请参见此页面,它将帮助您确定是否可以将配置部分存储在外部:

General Attributes Inherited by Section Elements

关于asp.net - web.config部分的单独配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4470761/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com