Posted inTech Info
Redirecting your domain from https to http using .htaccess in cPanel
This article will show you how to use cPanel's file manager to force redirect all traffic coming over https:// to http:// via your .htaccessRewriteEngine OnRewriteCond %{HTTPS} onRewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]==========1.…