Forum Moderators: phranque
I want to redirect all traffic coming on https to http. I have a few Virtual Hosts defined in httpd.conf. I have tried putting the following in the <VirtualHost *:443> stanzas for each virtual host:
ServerName host1.domain.net
Redirect permanent / [host1.domain.net...]
ServerName host2.domain.net
Redirect permanent / [host2.domain.net...]
ServerName host3.domain.net
Redirect permanent / [host3.domain.net...]
The problem with that solution is that visitors get an SSL certificate warning before getting redirected. What I am trying to achieve is for
[host1.domain.net...] redirect to [host1.domain.net...]
[host2.domain.net...] redirect to [host2.domain.net...]
[host3.domain.net...] redirect to [host3.domain.net...]
Can this be done before visitors connect on port 443 and get a certificate warning? --thanks, Gigot