Https to http redirect using .htaccess File

Hello friends, today We will learn to you through this best tips and tricks how you to Redirect Your Custom Domain from HTTPS to HTTP Using main root file like name as a .htaccess. So let’s go to learn bellow Example.

How to Redirect Domain from HTTPS to HTTP Using .htaccess?

Add the simple source code below to your main website root path .htaccess file and then simple save it.

first of all you Log into cPanel. and the you can simple Click the File Manager icon on your cpanel menu list. here open the all hide files and last step to From here, get your (CTRL + F) .htaccess file, right click it and here paste your code and click Edit and save this file.

.htaccess file

RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

Also Read : SSL forcefully Redirect HTTP to HTTPS Using .htaccess File

Leave a Comment