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

Hello friends, today I will tell you through this post how you to Redirect Domain from HTTPS to HTTP Using .htaccess. So let’s go.

Add the code below to your website .htaccess file and then save it.

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