0
我想實現以下重定向。 https://abc.com到http://www.abc.comhttps到http重定向不起作用
我已經使用以下重定向規則,這對於HTTP非www工作正常到http WWW重定向,但它不工作的HTTPS非www到HTTP重定向WWW。
<rule name="HttpsTOHttpRedirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{CACHE_URL}" pattern="^https://abc.com" />
</conditions>
<action type="Redirect" url="http://www.abc.com{REQUEST_URI}" />
請幫助我。