我有一个使用Azure网站发布的MVC网站。
我需要将子域名重定向到外部网站。
我尝试使用url-rewrite,但似乎无法正常工作。我的网址重写模块有问题吗?
<rewrite>
<rules>
<rule name="Redirect to Facebook" enabled="true" stopProcessing="true">
<match url="(.*)"/>
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{HTTP_HOST}" pattern="^(facebook\.)(.*)$" />
</conditions>
<action type="Redirect" url="http://www.facebook.com/myprofile" redirectType="Permanent" />
</rule>
</rules>
</rewrite>