Force All Directs and Redirects Through https

In the Web.config, there is a section that forces Wavepoint to direct all browser interactions through https.

<rewrite>
<rules>
<clear />
<rule name="Redirect all requests to https" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}"
redirectType="Permanent" appendQueryString="false" />
</rule>
</rules>
</rewrite>

In your Internet Information Services (IIS) > Default Web Site, ensure you have URL Rewrite installed in order for the above code to function. URL Rewrite is a free installation from Microsoft.

IMPORTANT: If you cannot utilize URL Rewrite, then you must comment out the code above. If you do not comment it out, Wavepoint produces IIS errors upon launch.

QR Code is a registered trademark of DENSO WAVE INCORPORATED in Japan and other countries.

Was this helpful?