Hello! Some of my posts appear in google search https:// beginning, so when person clicks on it, it says the connection is unsecure. How can i fix it? Thank you.
I use kloxo, linux, wordpress. I really don't know how to do it because my support level on my vps provider is really poor. What information do i need to insert? I have all those fields: Ssl Certificate Name * Commonname (domain Name) * Countryname State * City * Organization * Department Name * Emailaddress * Does it needs to be an accurate information? as i am not located in US. What should be the Ssl Certificate Name?
You need to buy a SSL cert or reset things so you don't need to use one and use http URL's not https ones
If SSL is not required, you may redirect all requests from https://www.mydomain.com to http://www.mydomain.com using .htaccess , simply add the following lines to it: RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] Code (markup):