poo.example.com
をpoo.example.com/home.ashx
にリダイレクトしたいのですが、次のコードで失敗しています。リダイレクトのホームページ
<rewrite>
<rules>
<rule name="Redirect to HTTPS" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
</rule>
<rule name="Redirect poo.example.com to poo.example.com/home.ashx" patternSyntax="ECMAScript" stopProcessing="true">
<match url="(./)" />
<action type="Redirect" url="https://{HTTP_HOST}/home.ashx" />
</rule>
</rules>
</rewrite>
私はIIS 7.5を使用しています。
NOTE
私は疲れて既定のドキュメントを使用したが、それは動作しませんでした。私のアプリはasp.net mvcアプリです。それはそれに関連するかもしれませんが、これはここで問題ではありません。 IIS URL書き換え機能で実装する必要があります。
おそらく[this](http://stackoverflow.com/questions/278668/is-it-possible-to-make-an-asp-net-mvc-route-based-on-a-subdomain)は役に立ちますか? –