JavaScript Required.
We're sorry, but Pega7 doesn't work without JavaScript enabled. Please enable and refresh.
<p>This article assumes that you have already ordered an <a href="https://www.arvixe.com/help/article/arx-want-to-buy-an-ssl-certificate" target="_blank">SSL Certificate</a>. Redirecting your visitor to the secure URL will ensure that the data exchanged between your visitor and the website is secure. In addition, redirecting your website without an SSL certificate will generate browser errors when a visitor attempts to visit your website.</p> <p>To automatically redirect visitors to the Secure URL:</p> <ol> <li>Log into your WebsitePanel Hosting Space.</li> <li>Click <strong>File Manager</strong> under <strong>Hosting Spaces</strong>. <p><img alt="Hosting Spaces - File Manager" class="img-responsive" src="https://content.arvixe.com/arvixe/img/hosting-spaces-file-manager.png" style="max-width: 100%;" /></p> </li> <li>Click the domain you want to modify in the <strong>File Manager.</strong> <p><img alt="Hosting Spaces - File Manager - Select Domain" class="img-responsive" src="https://content.arvixe.com/arvixe/img/hosting-spaces-file-manager-select-domain.png" style="max-width: 100%;" /></p> </li> <li>Click on the root document folder <strong>wwwroot</strong>. <p><img alt="Hosting Spaces - File Manager - Document Folder" class="img-responsive" src="https://content.arvixe.com/arvixe/img/file-manager-select-domain-root.png" style="max-width: 100%;" /></p> </li> <li>Locate the <strong>web.config</strong> file and click on the edit icon. <p><img alt="Hosting Spaces - File Manager - Document Folder - web.config" class="img-responsive" src="https://content.arvixe.com/arvixe/img/file-manager-select-domain-root.png" style="max-width: 100%;" /></p> </li> <li>Add the following code after the <strong><system.webServer></strong> code:</li> </ol> <blockquote> <pre> <rule name="HTTP to HTTPS redirect" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="off" ignoreCase="true" /> </conditions> <action type="Redirect" redirectType="Permanent" url="https://{HTTP_HOST}/{R:1}" /> </rule></pre> </blockquote> <p>Please note that the rewrite is provided as is with no warranties. If you need a customized rewrite, you will need to contact a developer as rewrites are outside the scope of our support.</p>