• Home
  • Computer Tips & Tricks
  • Game Tricks And Fixes
  • Internet Tricks
  • WordPress Tutorials
  • More Topics
    • Windows Tutorials
    • Andriod Tutorials
    • Adobe Tutorials
    • Youtube Tips And Tricks

Subscribe to Updates

Get the latest creative news from FooBar about art, design and business.

What's Hot

How to Remove Write Protection from USB & SD Cards in Windows 11,10,8.1,8 & 7?

September 1, 2023

How to Fix the “A Newer Version of this application is already installed.Installation Stopped” Error in Coreldraw?

August 31, 2023

How to Fix the CORELDRAW “You cannot install this product because another version is already installed.”?

July 31, 2023
What's Hot

How to Remove Write Protection from USB & SD Cards in Windows 11,10,8.1,8 & 7?

September 1, 2023

How to Fix the “A Newer Version of this application is already installed.Installation Stopped” Error in Coreldraw?

August 31, 2023

How to Fix the CORELDRAW “You cannot install this product because another version is already installed.”?

July 31, 2023
Lets Make It EasyLets Make It Easy
  • Home
  • Computer Tips & Tricks

    How to Remove Write Protection from USB & SD Cards in Windows 11,10,8.1,8 & 7?

    September 1, 2023

    How to Fix the “A Newer Version of this application is already installed.Installation Stopped” Error in Coreldraw?

    August 31, 2023

    How to Create Windows 11 Bootable USB Drive Using Rufus?

    June 21, 2023

    How to Download Original Windows 11 Officially?

    June 18, 2023

    How to Fix “The PC must support TPM 2.0 & Secure Boot” Error While Installing Windows 11?

    June 15, 2023
  • Game Tricks And Fixes

    How to Fix “Error 173 – AMD Software Installer Cannot Proceed as No AMD Graphics Hardware Has Been Detected in Your System” Problem Quickly?

    June 5, 2023

    How to Fix Failed to initialize Direct3D error on Windows 7,8,8.1,10 & 11?

    March 31, 2023

    How to Download & Clean Install Nvidia Drivers on Windows 10 & 11?

    February 15, 2023

    How to Download & Install Nvidia Drivers (Older Versions) on Windows 10 & 11?

    February 15, 2023

    How to Fix GTA IV (GTA 4) SecuLauncher error 2000 in Windows 7,8,10 &11?

    February 14, 2023
  • Internet Tricks

    How to Fix JIO FIBER’s Red Light Blinking Problem Easily?

    April 26, 2023

    How to Repair a Corrupted MySQL Database Table?

    March 2, 2023

    How to Convert EPUB to PDF for Free Online & Offline?

    February 28, 2023

    How to Get Quick Adsense Approval for WordPress Blog/Website?

    February 27, 2023

    How to Remove/Delete Your Site from Ezoic Network?

    February 5, 2023
  • WordPress Tutorials

    How to Deactivate All WordPress Plugins & Themes when you are not able to access the WP-Admin?

    May 20, 2023

    How to Create WordPress Admin User in phpMyAdmin?

    May 18, 2023

    How to Fix “Rankmath Causes Critical Error: Instant Index Status Error undefined – There has been a critical error on this website.”Quickly?

    May 18, 2023

    How to Fix “Sorry, You are not allowed to access this page” Error in WordPress?

    May 16, 2023

    How to Add an Admin User in WordPress using FTP or cPanel File Manager?

    May 10, 2023
  • More Topics
    • Windows Tutorials
    • Andriod Tutorials
    • Adobe Tutorials
    • Youtube Tips And Tricks
Lets Make It EasyLets Make It Easy
Home » How to Redirect HTTP to HTTPS in WordPress?
Uncategorized

How to Redirect HTTP to HTTPS in WordPress?

AuthorBy AuthorDecember 9, 2022Updated:December 9, 2022
How to Redirect HTTP to HTTPS in Wordpress?

Hi Guys, Today I am Going to Show You How to Redirect HTTP to HTTPS in WordPress?

Are you Looking for the Commonly Searched WordPress Error “How to Redirect HTTP to HTTPS in WordPress?” (or) “How to Fix Cloudflare SSL Handshake Failed Error?”.Here is the Solution to Fix this Common Issue That has been faced by most of the WordPress Users including myself.

Let’s See about How to fix this issue?

Check Out This: How to Transfer a Domain Easily from One Registrar to Another (In 3 Steps)? | Step-By-Step Domain Transfer Tutorial

Trending
How to Fix Command Prompt Opens And Closes Immediately in Windows 10? | Why CMD.exe Closes Immediately Whenever I Tried to Open it?

Steps For How to Redirect HTTP to HTTPS in WordPress?

Method 1: Using Force HTTPS Redirect Option on Your Hosting Server

Step 1: Go to Hosting Website and Login to Your Account.

Step 2: Click on your Domain and Navigate To SSL (Secure Socket Layer).

Step 3: On SSL Page, Turn on the Force HTTPS Redirect.

Step 4: Now Refresh the Website.

Method 2: Using Worpdress Admin Area

*Try this Method after Successfully Installing the SSL Otherwise this will not work.

Step 1: Go to WordPress Admin and Navigate to Settings Option.

Step 2: Under Settings Option, Select the General Settings Option.

Step 3: Now Change the WordPress Address, Site Address from HTTP to HTTPS.

Step 4: Now Refresh the Website.

If You’re Using Cloudflare Free SSL, Then Try this Below Method.

Method 3: Using Cloudflare SSL Options

Step 1: Now Open the Cloudflare Official Website and Navigate to SSL/TLS Option and Select Edge Certificates Tab.

How to Fix Mixed Content Issue in WordPress

Step 2: Now Turn On The Automatic HTTPS Rewrite Option.

Step 3: Now Turn On The Always Use HTTPS Option.

How to Fix Mixed Content Issue in WordPress

Step 4: Now Refresh your Website And Wait For Changes.

Method 4: Using Custom Code in .htaccess File and Wp-Config.php File

Step 1: First of all Go to Your Web Hosting Site and Log into Your CPanel (HPanel).

Step 2: Navigate to File Manager and Open Public_Html Folder.

Step 3: Now Right Click on the .htaccess File and Click Edit Option to Edit the .htaccess File.

Step 4: Add this Piece of Lines into the .htaccess File.

For APACHE Server Users,

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

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

Try this Alternate Code if the Above One Not Works,

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R,L]

For NGINX Server Users,

server {
listen 80;
server_name example.com www.example.com;
return 301 https://example.com$request_uri;
}

server {
listen 80;
server_name example.com www.example.com;
return 301 https://example.com$request_uri;
}

Step 5: Now Save the .htaccess File.

Step 6: Now Right Click on the Wp-Config.php File and Click Edit Option to Edit the Wp-Config.php File.

Step 7: Add this Piece of Lines into the Wp-Config.php

define(‘FORCE_SSL_ADMIN’, true);

define('FORCE_SSL_ADMIN', true);

Step 8: Now Save the Wp-Config.php File.

If the Above Method Doesn’t Work for you, then Try The Below Method.

Step 1: Goto to Your WordPress Plugin Section and Search For Really Simple SSL Plugin and Download it.

https://wordpress.org/plugins/really-simple-ssl/

How to Fix Mixed Content Issue in WordPress

Step 7: Now After Downloading the Plugin Activate it.

Step 8: Now Click the Go Ahead, Activate SSL Button to Fix the Error SSL “your connection to this site is not fully secure ”.

How to Fix Mixed Content Issue in WordPress

Step 9: Goto Your Website and Check it. You’ll See the Message “Connection is Secure” in Green Colour.

That’s It! You’re Done Man! 

That’s All About this Post. Give Your Reviews / Reactions about this Post and Leave Comments, Ask Your Doubts, We are here to Help You!

Previous ArticleHow to Protect Your PC from Windows Print Spooler PrintNightmare Vulnerability?
Next Article How to Increase PHP Memory Limit WordPress? | How To Fix “Current Memory Limit is 40 MB We recommend setting memory to at least 128MB”?
Author

Basically an Instrumentation Engineer But Very much Interested in Blogging. I'm a Passionate Blogger and an Expert in Search Engine Optimization And Always Looking Forward to Learn New Things. I Would Fix & Provide Solution to the Most Common Issues Related to PC,Laptops,Mobiles,OS, Hardwares and Softwares.

Related Posts

Computer Tips & Tricks

How to Fix Failed to initialize Direct3D error on Windows 7,8,8.1,10 & 11?

March 31, 2023
Computer Tips & Tricks

How to Take Screenshot in Laptop & PC Without Using Print Screen Button?

December 9, 2022
Internet Tricks

Youtube Channel Optimization Best Practices: Why You Need to Choose Tubebuddy? | Youtube Best SEO Tools

December 9, 2022
Add A Comment

Leave A Reply Cancel Reply

Subscribe to Updates

Get the latest tech news from FooBar about tech, design and biz.

Most Popular
  • Trending:How to Remove Write Protection from USB & SD Cards in Windows 11,10,8.1,8 & 7?
    by Author|September 1, 2023
    0
  • Trending:How to Fix the “A Newer Version of this application is already installed.Installation Stopped” Error in Coreldraw?
    by Author|August 31, 2023
    1
  • Trending:How to Fix the CORELDRAW “You cannot install this product because another version is already installed.”?
    by Author|July 31, 2023
    0
  • Trending:How to Uninstall the Windows Updates Using WUSA And DISM Commands in Windows 11/10/8/7?
    by Author|July 18, 2023
    0
  • Trending:How to Fix the Inaccessible Boot Device Error on Windows 8,8.1,10,11?
    by Author|June 27, 2023
    0

Top Posts

How to Fix “Oops looks like the page is lost. This is not a fault just an accident that was not intentional.”Error?

April 26, 2023407 Views

How to Fix “Error 195- AMD Software Installer Cannot Continue Because It Is Unable to Access the Required Web Resources” Problem Quickly?

May 7, 2023289 Views

How to Configure Jio Fiber Router? | Reliance Jio Fiber Router JCO4032 Settings [ Updated ]

December 9, 2022266 Views
Editor's Pick
Internet Tricks

How to Configure Jio Fiber Router? | Reliance Jio Fiber Router JCO4032 Settings [ Updated ]

AuthorDecember 9, 2022
Adobe Tutorials

How to Fix “A low-level exception occurred in ImporterMPEG” Error in Adobe Premiere Pro?

AuthorDecember 9, 2022
Internet Tricks

How to Fix JIO FIBER’s Red Light Blinking Problem Easily?

AuthorApril 26, 2023
Adobe Tutorials

How to Fix “File importer detected an inconsistency in the file structure.Reading and writing this files metadata (XMP) has been disabled.” Error in Adobe Premiere Pro?

AuthorDecember 9, 2022
Latest Articles

The Ultimate Technology Site About Technical Support, Information Technology, PC Builds, Domain Hosting, WordPress, Blogger.Letsmakeiteasy is a site where you can learn about technology, Search Engine Optimisation, Computer and Mobile Tricks, Blogging and WordPress Tips. We are Here to Help You.

Most Popular

How to Fix “Oops looks like the page is lost. This is not a fault just an accident that was not intentional.”Error?

April 26, 2023407 Views

How to Fix “Error 195- AMD Software Installer Cannot Continue Because It Is Unable to Access the Required Web Resources” Problem Quickly?

May 7, 2023289 Views

How to Configure Jio Fiber Router? | Reliance Jio Fiber Router JCO4032 Settings [ Updated ]

December 9, 2022266 Views
Our Picks

How to Remove Write Protection from USB & SD Cards in Windows 11,10,8.1,8 & 7?

September 1, 2023

How to Fix the “A Newer Version of this application is already installed.Installation Stopped” Error in Coreldraw?

August 31, 2023

How to Fix the CORELDRAW “You cannot install this product because another version is already installed.”?

July 31, 2023
  • Home
  • About Us
  • Contact Us
  • Sitemap
Copyright © 2023 Letsmakeiteasy.tech LLC. All Rights Reserved. | Crafted With ❤️ | Created by Vasantharaj R N

Type above and press Enter to search. Press Esc to cancel.

Ad Blocker Enabled!
Ad Blocker Enabled!
Our website is made possible by displaying online advertisements to our visitors. Please support us by disabling your Ad Blocker.