1

IIS 7 用の Microsoft Rewrite Module 2.0 を使用して、web.config で 307 リダイレクト ルールを作成することはできますか? 目標は、一部の投稿フォーム リクエストを同じドメイン内の別のパスにリダイレクトすることです。

4

1 に答える 1

5

actionタグのredirectType属性を「Tempary」に設定する

例えば。

<rewrite>
      <rules>
        <rule name="RedirectRule" stopProcessing="true">
          <match url="(.*)" ignoreCase="true" />
          <action type="Redirect" url="http://www.newdomain.com/{R:1}" redirectType="Temporary" />
            <conditions>
                <add input="{HTTP_HOST}" pattern="www\.old-domain\.com" />
            </conditions>
        </rule>
      </rules>
    </rewrite>
于 2012-09-27T13:53:23.560 に答える