Hello,
I changed my site URL from https to http and
I changed the URL for my SSL cert and removed the www. and now am getting these types of errors on Google searches:
Unable to connect
Firefox can't establish a connection to the server at www.example.com.
The site could be temporarily unavailable or too busy. Try again in a few moments.
If you are unable to load any pages, check your computer's network connection.
If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web.
If I check the Google links, they all show the https:// link. Just removing the s allows the link to work.
Naturally this is hurting my traffic. So this has been placed in the htaccess file, but doesn't seem to be working. What is wrong:
RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteRule (.*) [
example.com%{REQUEST_URI}...]
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^example.com$
RewriteRule (.*) http://www.example.com%{REQUEST_URI}
Grandma