重定向域作品,但不重定向页面

时间:2019-03-05 20:40:26

标签: iis url-rewriting iis-8

在我的web.config中,我有几个很好的规则。我下面有一个,我的第二优先。域重定向正常。但是,www.olddomain.com / aboutus重定向到www.newdomain.com/newpageaboutus。我需要它将所有请求重定向到位于www.newdomain.com/newpage的静态页面。

            <rule name="olddomain.com" enabled="true">
                <match url="(.*)" ignoreCase="true" />
                <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                    <add input="{HTTP_HOST}" matchType="Pattern" pattern="^.*olddomain\.com$" />
                </conditions>
                <action type="Redirect" url="https://www.newdomain.com/newpage" redirectType="Permanent" appendQueryString="false" />
            </rule> 

谢谢。

1 个答案:

答案 0 :(得分:0)

这是我的错误。我从一台主机重定向到另一台主机包括新页面链接。抱歉。但是,我认为将来添加stopProcessing =“ true”可以解决该问题。