PDA

View Full Version : How to change http to https ?



rajivdevkk
09-01-2014, 02:43 AM
Hi friends !
I want to change http to https because google give benefits to those site which uses https so I want to know how to change http to https.

Bestseoservices
09-01-2014, 06:09 AM
Apache to redirect http to https will make sure that your site (or a part of it) will only be reached by your customers using SSL.

Make sure your SSL document is properly installed so you can access https://www.yoursite.com (for more information see our Apache SSL Set up guidance)
Make sure mod_rewrite is allowed in Apache

philipmathews
09-01-2014, 09:33 AM
Contact the hosting provider to complete the https process.

sagarpatel8
09-03-2014, 08:55 AM
Thanks for sharing useful information about http and https.

rvtrainingchd
09-03-2014, 08:57 AM
Yeah, it is right that Google will be showing slightly more affinity towards https (secure) site domains compared to the http version.
For this, you can use this link: http://www.petri.com/configure_ssl_on_your_website_with_iis.htm
But it is not necessary to convert your site to https.

inkshed
09-03-2014, 09:00 AM
1_Using Apache to redirect http to https, changes is done.
2_As per Google guideline switching To HTTPS Won't Change Your Page Rankings

rousellwall
09-25-2014, 06:28 AM
1_Using Apache to redirect http to https, changes is done.
2_As per Google guideline switching To HTTPS Won't Change Your Page Rankings

Exactly! It looks really promising. Thanks for updating to us.

jamesnixon487
09-28-2014, 09:58 AM
Contact server administrator to complete http https transfer.

christimathews
09-29-2014, 06:10 AM
The server should be contacted for changing from http to https. While your website is changed to https additional space is required in your server.

Allenaa
10-01-2014, 02:17 AM
You should contact your web hosting provider

akashram
10-01-2014, 06:46 AM
Contact your web hosting provider to change from http to https

samcorey
10-01-2014, 07:16 PM
You can do this from control panel of your web hosting account. Each control panel has different option to set redirection for http to https. Best thing would be to contact your web hosting support team indeed.

carlbaker
10-02-2014, 07:34 AM
Now you just need to edit your httpd.conf file or the file where your virtual host is specified and add these lines to redirect http to https:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
Now, when a visitor types http://www.yoursite.com/mypage.htm the server will automatically redirect http to https so that they go to https://www.yoursite.com/mypage.htm

Note: You can also redirect a single page from http to http in Apache by using this in your configuration file or .htaccess file:
RewriteEngine On
RewriteRule ^apache-redirect-http-to-https\.html$ https://www.yoursite.com/apache-redirect-http-to-https.html [R=301,L]

nilam-shah
11-07-2014, 04:05 AM
Apache to redirect http to https will make sure that your site (or a part of it) will only be reached by your customers using SSL.

Make sure your SSL document is properly installed so you can access https://www.yoursite.com (for more information see our Apache SSL Set up guidance)
Make sure mod_rewrite is allowed in Apache

Thanks for sharing your thoughts.....