Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: redirecting from http to https |
|
Author |
|
pat9
Joined: 04 May 2015 Posts: 2 Location: US, Houston
|
Posted: Mon 04 May '15 16:54 Post subject: redirecting from http to https |
|
|
I keep hearing that redirecting from http to https is not very secure [non-SSL to SSL]. Among other reasons, one reason is that the browser may continue to think it is communicating with non secure server and may not encrypt the data. Is it true? I hope not, I am using the following - do you see any issue here.
<VirtualHost 12.34.567.89:80>
ServerName www.mysite1234.com:80
Redirect / https://www.mysite1234.com/
</VirtualHost>
Regards. |
|
Back to top |
|
James Blond Moderator

Joined: 19 Jan 2006 Posts: 7407 Location: EU, Germany, Next to Hamburg
|
Posted: Thu 07 May '15 17:45 Post subject: |
|
|
A redirect is secure. The browser will not continue the old connection as long as your do not have http:// in your html source code. |
|
Back to top |
|
|
|
|
|
|