1
我有一個運行在IIS 8.5之上的Sitecore應用程序。我想從#1到#2 URL重定向/重寫。URL重寫 - IIS上的Sitecore
我試圖在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>
請幫忙。
您需要啓用該規則。將'enabled =「false」'更改爲'enabled =「true」# –
@MarekMusielak:你應該把它作爲一個被接受的答案! –
@JayS評論轉換爲答案。感謝您的提示:) –