We have a WordPress site, and used to have an SSL certificate. The site used to be all HTTPS, and now we don\'t need the SSL anymore so we let it expire.
We\'ve alre
This disables https completely
RewriteEngine On RewriteCond %{HTTPS} off
This leaves The HTTPS enabled and then uses server VARIABLES to redirect all pages to HTTP:
RewriteEngine On RewriteCond %{HTTPS} on RewriteRule .* http://%{HTTP_HOST}%{REQUEST_URI}
Hope this helps you....