Re: directing http -- https

2002-02-11 Thread Owen Boyle
[EMAIL PROTECTED] wrote: RedirectMatch (.*) https://d.com$1 Won't this create an infinate loop? I could be wrong, but I think RedirectMatch will pick up the hit via http or https, and attempt to send the user to https://d.com$1 even if the user came via https in the first place. It

Re: directing http -- https

2002-02-10 Thread Ralf S. Engelschall
In article [EMAIL PROTECTED] you wrote: Quoting Owen Boyle [EMAIL PROTECTED]: If you want to be more specific so that http://d.com/foo/bar.html -- https://d.com/foo/bar.html then use something like: RedirectMatch (.*) https://d.com$1 Won't this create an infinate loop? I could

Re: directing http -- https

2002-02-09 Thread ulairi
Quoting Owen Boyle [EMAIL PROTECTED]: If you want to be more specific so that http://d.com/foo/bar.html -- https://d.com/foo/bar.html then use something like: RedirectMatch (.*) https://d.com$1 Won't this create an infinate loop? I could be wrong, but I think RedirectMatch will pick

directing http -- https

2002-02-07 Thread Owen Boyle
Farooq Khan writes: I have installed apache with mod_ssl. Briefly, I want all http requests to a particular VirtualHost to be redirected to https for the same VirtualHost. Do I use mod_rewrite to do this? I have set up 4 VirtualHosts in the order: VirtualHost a.com:80