子域网址在Azure中重写

时间:2014-02-15 23:17:25

标签: asp.net-mvc url-rewrite-module

我有一个使用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>

0 个答案:

没有答案