51

環境によって変更したい IIS 書き換えルールがいくつかあります。開発の書き換えルールは web.config ファイルにあり、次に web.test.config ファイルの最後にあります。

    <appSettings>
         ...Some app settings tranforms here
    </appSettings>
    <system.webserver>
            <rewrite xdt:Transform="Replace">
              <rules>
                ... rules here
              </rules>
            </rewrite>
          </system.webserver>
        </configuration>

テスト用に展開するとアプリの設定が変換されますが、IIS の書き換えルールでは変換されません。セクション全体<rewrite>が変換ファイル内のセクションに単純に置き換えられることを望んでいましたが ( http://msdn.microsoft.com/en-us/library/dd465326.aspxに従って)、何も変更されていません。

私もxdt:Transform="Replace" xdt:Locator="Match(name)">個々のルールをつけてみました:

<rule name="Test rule" stopProcessing="true" xdt:Transform="Replace" xdt:Locator="Match(name)">

しかし、これでも違いはありません。

web.configの書き換えルールを置き換えることさえ可能ですか?もしそうなら、何が欠けていますか?

4

5 に答える 5

55

メインの web.config に書き換えルールがなかったため、Replace 変換が機能しませんでした。以下のように、Insert 変換を正常に使用しました。

  <system.webServer>
<rewrite xdt:Transform="Insert">
  <rules>
    <rule name="CanonicalHostNameRule1">
      <match url="(.*)" />
      <conditions>
        <add input="{HTTP_HOST}" pattern="^www\.mysite\.com$" negate="true" />
      </conditions>
      <action type="Redirect" url="http://www.mysite.com/{R:1}" />
    </rule>
  </rules>
</rewrite>
</system.webServer>
于 2013-11-27T18:05:52.283 に答える
10

リリース構成、エラー、およびセクションを作成するときに、最初は書き換えセクションが奇妙に機能し、セクションがまったく表示されませんでした。これが私がそれを解決した方法です。

Microsoft (R) ビルド エンジン バージョン 12.0.31101.0

Microsoft .NET Framework、バージョン 4.0.30319.0

編集これをいじった後、書き換えプラグインを持たないサーバーに書き換えタグがあると、Webサーバーがエラーを返すことに気付きました。サーバーとローカル開発マシンで異なる構成が必要なため、修正は次のとおりです。

変換されていない web.config は <system.webServer> タグのみを必要とし、基本的な正規のホスト名ルールの web.config.release でのみ必要です。

<configuration>
<system.webServer>
        <rewrite xdt:Transform="Insert">
            <rules>
                <rule name="CanonicalHostNameRule" xdt:Transform="Insert">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTP_HOST}" pattern="^www\.host\.com$" negate="true" />
                    </conditions>
                    <action type="Redirect" url="http://www.host.com/{R:1}" />
                </rule>
            </rules>
        </rewrite>
</system.webServer>
</configuration>

アクションには名前はまったく必要ありませんでしたが、書き換えタグには xdt:Transform="Insert" が必要です

明らかに、ローカル マシンでも同様に使用する場合は、代わりに更新が必要になります。

于 2015-06-05T14:07:07.833 に答える
2

system.webServer の rewrite セクションを変換することができます。私は当初、同じ問題を抱えていましたが、誤って書き換えノードを system.web の下に誤って配置したことに気付きました。提供された限定的なスニペットに基づくと、これは問題のようには見えませんが、問題は変換ファイル内のノードの配置に関連していると思われます。

これが私の Web.Debug.config の外観です (このバージョンでは、デバッグ ビルドに正しい Web.config が書き込まれています)。

<?xml version="1.0"?>

<!-- For more information on using web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <!--
    In the example below, the "SetAttributes" transform will change the value of 
    "connectionString" to use "ReleaseSQLServer" only when the "Match" locator 
    finds an atrribute "name" that has a value of "MyDB".

    <connectionStrings>
      <add name="MyDB" 
        connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True" 
        xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
    </connectionStrings>
  -->
  <system.web>
    <!--
      In the example below, the "Replace" transform will replace the entire 
      <customErrors> section of your web.config file.
      Note that because there is only one customErrors section under the 
      <system.web> node, there is no need to use the "xdt:Locator" attribute.

      <customErrors defaultRedirect="GenericError.htm"
        mode="RemoteOnly" xdt:Transform="Replace">
        <error statusCode="500" redirect="InternalError.htm"/>
      </customErrors>
    -->
  </system.web>
  <system.webServer>
    <rewrite xdt:Transform="Replace">
      <rules>
        <clear/>
        <rule name="Canonical Hostname">
          <!-- Note that I have stripped out the actual content of my rules for the purposes of posting here... -->
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>
于 2012-08-25T13:42:08.013 に答える
0

私が使用するトリックは、アクションに名前
を付けてから、変換でxdt:Transform="SetAttributes" xdt:Locator="Match(name)"次のように追加することです

<system.webServer>
<rewrite>
  <rules>

    <rule name="RedirecttoWWW" enabled="true"  >
      <match url="(.*)" />
      <conditions>
        <add input="{HTTP_HOST}" negate="true" pattern="^www\.([.a-zA-Z0-9]+)$" />
      </conditions>
      <action name="AddWWW" type="Redirect" url="http://www.{HTTP_HOST}/{R:0}" appendQueryString="true" redirectType="Permanent" xdt:Transform="SetAttributes" xdt:Locator="Match(name)" />
    </rule>

  </rules>
</rewrite>

上記の例は、すべてのリクエストにwwwを追加することです

- - - -アップデート - - -

アクションに名前を追加する更新だけでは期待どおりに機能しないため、コードを次のように更新しました

 <system.webServer>

      <rule name="RedirecttoWWW" enabled="true"  xdt:Transform="RemoveAll" xdt:Locator="Match(name)" >
      </rule>
      <rule name="RedirecttoWWW" enabled="true"  xdt:Transform="InsertIfMissing" xdt:Locator="Match(name)" >
        <match url="(.*)" />
        <conditions>
          <add input="{HTTP_HOST}" negate="true" pattern="^www\.([.a-zA-Z0-9]+)$" />
        </conditions>
        <action  type="Redirect" url="http://{HTTP_HOST}/{R:0}" appendQueryString="true" redirectType="Permanent" />
      </rule>
    </rules>
  </rewrite>
  </system.webServer>
于 2015-02-27T22:52:57.833 に答える