Hi
Recently i added http to https redirect rule but now i want to exclude one folder with couple of pages. how can change my rule from IIS .
Below is my rules from IIS.
<rule name="Redirect to HTTP" enabled="true" stopProcessing="true"><match url="^(?!members)" ignoreCase="true" /><conditions><add input="{HTTPS}" pattern="^OFF$" /><add input="{HTTP_HOST}" pattern="^([\d\w.]+)" negate="true" /></conditions><action type="Redirect" url="http://{HTTP_HOST}/{R:1}" redirectType="SeeOther" /></rule><rule name="Redirect to HTTPS" enabled="true" stopProcessing="true"><match url="(.*)" /><conditions><add input="{HTTPS}" pattern="^OFF$" /><add input="{HTTP_HOST}" pattern="localhost" negate="true" /></conditions><action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" /></rule>
Thank you
Vik