我们有一个网站www.abc.com该服务器托管在服务器 A 上,并且已在该服务器上设置重定向,将该站点重定向至www.xyz.com/reports。 www.xyz.com是我们的sitecore网站,并且有一个页面报告。如果我们能指出www.abc.com到www.xyz.com如果流量开始到达我们的 Sitecore 服务器,我们将处理来自 Sitecore 服务器本身的重定向部分。
实际上现在如果我们想设置任何重定向www.abc.com我们必须联系服务器 A 团队,因此我们只想消除这种依赖。
答案1
尝试以下方法
<rule name="Redirect url1" stopProcessing="true">
<match url="^url1$" />
<conditions>
<add input="{HTTP_HOST}" pattern="^(www.)?example.com1$" />
</conditions>
<action type="Redirect" url="http://www.example.com/url2"
appendQueryString="false" redirectType="Permanent" />