在web.config

时间:2019-05-15 14:16:19

标签: web-config

我需要通过web.config将旧网址重定向到新网址,

以下是我的网址外观的示例 我的旧网址是:iniweb.abconsulting.co.uk

我的新网址是:ede.abconsulting.co.uk

这是到目前为止我尝试过的方法,但是没有用,

<rule name="Old URL to new URL redirect" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAny" trackAllCaptures="false">
<add input="{HTTP_HOST}" pattern="iniweb" />
</conditions>
<action type="Redirect" url="ede.abconsulting.co.uk" redirectType="Found"/>
</rule>

不适用

我仍然收到“未找到” HTTP错误404。找不到请求的资源。

我希望将重定向到新URL

0 个答案:

没有答案
相关问题