Question

I have the following code in my web.config:

<rewrite>
    <rules>
        <rule name="Redirect HTTP to HTTPS" stopProcessing="true">
            <match url="(.*)" />
            <conditions>
                <add input="{HTTPS}" pattern="^OFF$" />
            </conditions>
            <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" 
                    redirectType="SeeOther" />
        </rule>
    </rules>
</rewrite>

I would like to redirect everything EXCEPT for http://www.mysite.com/manual to https.

How would I modify the above to allow this?

Was it helpful?

Solution

It should be ok with adding the following code in your conditions tag

<add input="{REQUEST_URI}" negate="true" pattern="^/manual/*" ignoreCase="true" />
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top