1

我有 2 个 URL http://test.mysite.com (1) 和 http://test.mysite.com/app (2)

当 (2) 不应该被重定向时,我想将请求重定向到 (1) 到 www.othersite.com。

是否可以使用正则表达式进行 url 重写?

br

4

1 回答 1

0

是的,可以使用 URL 重写模块。您的规则如下所示:

<rule name="Redirect non app" stopProcessing="true">
    <match url="^app(.*)" negate="true" />
    <action type="Redirect" url="http://www.othersite.com{REQUEST_URI}" />
</rule>
于 2017-07-18T14:08:02.403 回答