January 03rd, 2024

How to Move WordPress from HTTP to HTTPS

How to Move WordPress from HTTP to HTTPS


This is the easiest method and is recommended for all new bloggers. First of all, install and activate Really Simple SSL plugin on your site.

This plugin fix all your website SSL issues:

  • Checks the SSL certificate.
  • Sets up a redirect from HTTP to HTTPS.
  • Finds HTTP URLs in your content and tries to fix them.


After activating the plugin, click on Settings -> SSL. After that click on Go ahead, activate SSL. This will automatically detect the SSL certificate installed on your site and redirect all your HTTP URLs to HTTPS.

Likes (4) Comments (1)



1 Comments Add Your Comment


Somit Vishwakarma
11 months ago Selected
With .htaccess file you can redirect the domain http to https
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourdomain\.com [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]
Like (1) Reply

Post a Comment

To leave a comment, please Login or Register