Loading...

Knowledge Base

How to Redirect Visitors to the Secure URL - Plesk

This article assumes that you have already ordered an SSL Certificate.

To automatically redirect visitors to the Secure URL:

  1. Log in to your Plesk Control Panel.
  2. Click Website & Domains.
  3. Click File Manager for the website you want to redirect.
  4. Click on the web.config file.
  5. Click Edit in Code Editor.
  6.  Add the following code after <system.webServer>:
            
              <configuration>
              <system.webServer>
              <rewrite>
              <rules>
              <rule name="Redirect to HTTPS" stopProcessing="true">
              <match url="(.*)" />
              <conditions>
              <add input="{HTTPS}" pattern="off" />
              </conditions>
              <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
              </rule>
              </rules>
              </rewrite>
              </system.webServer>
              </configuration>
            
          
  7. Click OK.

    All visitors to your website should now be redirected to the secure URL https://example.com.
Did you find this article helpful?

 
* Your feedback is too short

Loading...