I have just installed URL rewrite module 2.0 on my server. I have following rules that switches the user from http to https if he is navigating to login or register view.
<rewrite>
<rules>
<rule name="Redirect to SSL for login and register" stopProcessing="true">
<match url="^login.aspx$|^register.aspx$" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_Host}/{R:0}" />
</rule>
</rules>
</rewrite>
This way when user tries to visit login or register pages on http, he is switched to relevant https page. But once user has logged in using https://server.com/login.aspx, I want him to navigate back to http. Precisely, I want to write a rule that all pages except login and register are forced on http. How would I do that? I think, I just need to figure out the regex of anything but register and login pages? What would that be like? I am not proficient with regex.