URL重写 - IIS上的Sitecore

时间:2017-06-05 03:56:00

标签: iis url-rewriting sitecore

我有一个在IIS 8.5之上运行的Sitecore应用程序。我想从#1重定向/重写到#2 URL。

  1. http://mywebsite.com/a/a1/webpage.aspx
  2. http://mywebsite.com/a/a2/webpage.aspx
  3. 我尝试在IIS-URL重写级别上执行,它只是不起作用而且没有任何反应。

    <rule name="redirect_a1_to_a2" enabled="false" stopProcessing="true">
        <match url="a/a1/" />
        <conditions>
            <add input="{PATH_INFO}" pattern="a/a1(/?)" />
        </conditions>
        <action type="Redirect" url="http://mywebsite.com/a/a2" />
    </rule>
    

    请帮忙。

1 个答案:

答案 0 :(得分:2)

你的规则是正确的。那么你唯一需要做的就是启用规则。

只需改变:

enabled="false"

enabled="true"