外部構成ファイルを使用して、web.configファイルlocation
のルートセクション内に複数の要素を定義しようとしています。<configuration>
これは可能ですか?
単一のセクション(例)に対してこれを行う方法を理解していconnectionStrings
ますが、構成要素内の複数の要素に対してこれを行うことはできますか? <configuration>
; configSource
それ自体は属性を許可しません。ダミー要素を作成してで定義することは可能configSections
ですか?その場合、どのタイプを指定しますか?
背景情報:永続的なリダイレクトを定義できるようにこれを実行したいと思っています。何百ものリダイレクトが存在する可能性があるため、理想的には、web.config自体でこれを定義したくありません。すなわち
<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>