11 Oct 2007 04:34
How to redirect http to https on same server?
Bernard Barton <bfb21 <at> comcast.net>
2007-10-11 02:34:54 GMT
2007-10-11 02:34:54 GMT
I'm trying to redirect users from http://vhost.mydomain.com to https://vhost.mydomain.com using this RewriteRule: RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*)$ https://cj-mydomain.choicepoint.net/$1 [L,R] This does not seem to work. I have the following defined as a virtual host, and the ssl.include is listed below that. What do I need to do to redirect http to https on the same server? -Thanks <IfDefine SSL> <VirtualHost 178.45.221.41:443> #See file below Include conf/conf.d/ssl.include ErrorLog /usr/local/apache/logs/ssl_mydomain_error_log CustomLog /usr/local/apache/logs/ssl_mydomain_access_log combined <IfModule mod_proxy.c> ProxyRequests On ProxyPass / http://vhost.mydomain.net:80/ ProxyPassReverse / http://vhost.mydomain.net:80/ </IfModule> </VirtualHost>(Continue reading)
RSS Feed