トラフィックをにリダイレクトするためのこのルールがありますが/public
、「リダイレクトループ」エラーが発生します。助言がありますか?
<rule name="Redirect to /public" stopProcessing="true">
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="^test.example\.com$" ignoreCase="false" />
</conditions>
<action type="Redirect" url="http://test.example.com/{R:1}" />
<match url="(.*)" ignoreCase="false" />
</rule>