我正在尝试使用外部配置文件在我的 web.config 文件location
的根<configuration>
部分中定义多个元素。这可能吗?
我了解如何为单个部分(例如connectionStrings
)执行此操作,但是可以为配置元素中的多个元素执行此操作吗? <configuration>
; 本身不允许该configSource
属性。是否可以创建一个虚拟元素并在中定义它configSections
,如果可以,我应该给它什么类型?
背景信息:我想这样做以便我可以定义永久重定向,可能有数百个,所以理想情况下我不想在 web.config 本身中定义它。IE
<configuration>
<!-- rest of web.config here -->
<!-- i need mutiple location elements so want these in an external file-->
<location path="oldpage">
<system.webServer>
<httpRedirect enabled="true" destination="/uk/business" httpResponseStatus="Permanent" />
</system.webServer>
</location>
</configuration>