There are some specific cases when you want to redirect particular URL or a single website to be opened through HTTP instead of HTTPS. For that purpose you should add the following rewrite rule in your .htaccess file:
1
2
3
4
|
RewriteEngineOn
RewriteCond%{HTTPS}on
RewriteCond%{HTTP_HOST}!^domain\.com$
RewriteRule.* http://%{HTTP_HOST}%{REQUEST_URI} [R,L]
|
This will redirect your "domain.com" to http://yourdomain.com. That is, the opposite of what everyone teaches.
For more details how to redirect your website from HTTP to HTTPS, please visit