Web配置重定向无响应

时间:2016-02-17 10:56:25

标签: c# asp.net xml web-config

我被要求设置一个重定向:

https://www.#####.co.uk/news/uk-families-have-more-money%E2%80%93butalso-more-debts/

https://www.#####.co.uk/news/

我已将以下规则添加到我的网络配置中:

            <rule name="Redirect" stopProcessing="true">
                <match url="news/uk-families-have-more-money%E2%80%93butalso-more-debts/" />
                <action type="Redirect" url="http://#######.co.uk/news/"  redirectType="Permanent"  />
            </rule>

但它没有任何效果。

我知道&#39;%E2%80%93&#39;对于UTF8代表&#39; - &#39;,所以我尝试替换它,但规则仍然没有效果。

有什么想法吗?无论如何我可以调试这个吗?

0 个答案:

没有答案