Apache redirect multiple domain names from https
- by Cyril N.
My server distribute two main websites, says : www.google.com & www.facebook.com (yeah I know :p)
I want them to be distributed via https. Using Apache, I defined a vhost file in sites-available/enabled containing this :
<VirtualHost *:80>
ServerName google.com
Redirect / https://www.google.com/
</VirtualHost>
…