Re: [us...@httpd] redirect all http to https

2010-04-20 Thread Frank Bonnet
Thanks a lot :-) On 04/20/10 09:59, Michael Ni wrote: RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [R, L] or RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] many ways to do it On Tue, Apr 20, 2010 a

Re: [us...@httpd] redirect all http to https

2010-04-20 Thread Michael Ni
RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [R, L] or RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] many ways to do it On Tue, Apr 20, 2010 at 12:55 AM, Frank Bonnet wrote: > Hello > > I want to redi

[us...@httpd] redirect all http to https

2010-04-20 Thread Frank Bonnet
Hello I want to redirect ALL http requests to a virtual host to the https port using the same URL ( except for the protocol side ) Thanks for any info/links - The official User-To-User support forum of the Apache HTTP Server