My site no longer uses SSL, so I have done the following.
When I comment this entry in the httpd.conf file
# Secure (SSL/TLS) connections
# Include conf/extra/httpd-ssl.conf
It does disable ssl, so I add this to the .htaccess file
RewriteEngine On
RewriteCond %{SERVER_PORT} 443
RewriteRule ^(.*)$ [
mysite.com...] [R,L]
Which then seems to disable the first one.
Meaning, if I uncomment, leaving this
# Secure (SSL/TLS) connections
Include conf/extra/httpd-ssl.conf
The redirect to http works, but not if I comment out the second line.
Doesn't this leave SSL active on the server? How do I deactivate it and still get the redirect?