【发布时间】:2017-04-26 19:58:39
【问题描述】:
在 IIS 8 中,我想将 url http://test.example.com 重定向到 http://www.example.com/abc/123
我试试这个,但不行。
<rule name="test" stopProcessing="true">
<match url="^test.example.com$" />
<action type="Redirect" url="http://www.example.com/abc/123" />
</rule>
【问题讨论】:
标签: iis url-rewriting