How to Force HTTPS in WordPress

A step-by-step guide on how to force HTTPS in WordPress, ensuring that all traffic to your website is redirected to HTTPS, thus enhancing security and improving SEO.

We will set up HTTPS in WordPress by modifying the wp-config.php file, updating settings in the admin panel, and using a free plugin to redirect all HTTP requests to HTTPS.

Step 1: Update your site URL to HTTPS

  • Log in to your WordPress admin panel and go to Settings > General.
  • Change both WordPress Address (URL) and Site Address (URL) from http:// to https://.

Step 2: Update the wp-config.php file

  • Open the wp-config.php file located in the root directory of your WordPress installation and add the following code before the line /* That's all, stop editing! Happy publishing. */:
    define('FORCE_SSL_ADMIN', true);
    
  • This code forces the admin area to use HTTPS.

Step 3: Set up a 301 redirect in .htaccess

  • Open the .htaccess file in the root directory of your WordPress installation and add the following code at the top:
    <IfModule mod_rewrite.c>
      RewriteEngine On
      RewriteCond %{HTTPS} off
      RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    </IfModule>
    
  • This will redirect all HTTP traffic to HTTPS.

Step 4: Use the "Really Simple SSL" plugin

  • Install and activate the "Really Simple SSL" plugin from the WordPress admin panel.
  • Once activated, the plugin will automatically detect the SSL settings and configure your site to use HTTPS.

System Requirements

  • A web server that supports HTTPS with an installed SSL certificate.
  • WordPress version 4.0 or later.
  • "Really Simple SSL" plugin version 5.0 or later.

How to install plugins and configure to run force HTTPS on WordPress

  1. Go to Plugins > Add New in the WordPress admin panel.
  2. Search for "Really Simple SSL" and click Install Now.
  3. Activate the plugin and follow its instructions to enforce HTTPS.

Tips

  • Check your entire website to ensure that no internal links are still using HTTP.
  • Use an online SSL checker tool to ensure your SSL certificate is correctly installed.


Related

How to send Authentication Header Token when POSTing data to API from WordPress

A guide on how to send data to an API from WordPress using the POST method and pass an Authentication Header Token for security. This article provides detailed instructions on how to configure and send an HTTP request.
How to INSERT data into a MySQL database in WordPress

A guide on how to use Prepared Statements in WordPress to safely and effectively insert data into a MySQL database.
Guide to creating a multiple image upload form in WordPress

A detailed guide on how to create a multiple image upload form in WordPress using a plugin or custom code, allowing users to upload multiple images to your website easily.
How to UPDATE data in a MySQL database of WordPress

A guide on how to use Prepared Statements in PHP to update data in the MySQL database of WordPress safely and effectively.
A Comprehensive Guide to Creating a WordPress Plugin

This article provides a step-by-step guide on how to create a WordPress plugin, including the basic structure, coding, and installing the plugin. You will learn how to extend the functionality of your WordPress site through plugin development.
Detailed guide on how to add Google OAuth login functionality in Wordpress

This article provides a detailed guide on how to integrate Google OAuth login functionality into Wordpress, allowing users to log in to your website using their Google accounts conveniently and securely.
Creating Captcha for Contact Form in WordPress

A detailed guide on how to add Captcha to the contact form in WordPress to protect your website from spam and automated bots.
Guide to Implement Apple OAuth Login in WordPress

A detailed guide on how to integrate Apple OAuth login into your WordPress site, including plugin installation and Apple OAuth service configuration.
JSON Web Token (JWT) Authentication in WordPress

A comprehensive guide on integrating JSON Web Token (JWT) authentication into WordPress. Learn how to secure WordPress REST API and use JWT to manage user login sessions.
Complete Guide on How to Create a WordPress Theme

This article guides you step-by-step on creating a WordPress theme from scratch, including folder structure, necessary files, and how to customize the interface for your website.

main.add_cart_success