How to Redirect HTTPS to HTTP Using .htaccess?

Hello gays, today I will tell you through this tutorial how you to Redirect HTTPS to HTTP Using .htaccess. So let’s go.

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

.htaccess file create

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