0

使用重写模块在 IIS7 上使用以下规则时获取重定向循环。

         <rule name="redirect" stopProcessing="true">
      <match url="test" />
      <conditions>
        <add input="{HTTP_HOST}" pattern="domain.com$" />
      </conditions>
      <action type="Redirect" url="http://www.domain.com/new/test" appendQueryString="false" redirectType="Permanent" />
    </rule>

有任何想法吗?

谢谢

4

1 回答 1

1

看起来您正在尝试从http://domain.com重定向到http://www.domain.com

相信正确的模式应该是“^domain\.com$”

这与“domain.com”的整个 HTTP_HOST 值匹配

于 2013-05-23T14:46:40.583 回答