When the SSL certificate is active on your domain name, you need to update the WordPress Address and the Site Address to use https (secure) instead of http (insecure).

Once logged in to your WordPress admin, select Settings » General page from the left-hand menu. Then you need to update your WordPress and site URL address fields by replacing http with https.

Install SSL cert in Wordpress

Click on the ‘Save changes’ button to accept and save your settings.

Once the settings are saved, WordPress will log you out, and you will be required to re-login.

Finally, you need to set up WordPress redirects from HTTP to HTTPS by adding the following code to your .htaccess file.

1
2
3
4
5
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>

 

Was this answer helpful? 7 Users Found This Useful (5 Votes)