Re: [EMAIL PROTECTED] redirecting https to http..

2006-08-03 Thread Divakar
Nick Kew wrote: No chance. The browser popups happen *before* the request is decrypted and things like redirects can be applied. Thanks Nick Kew, Owen Boyle and Brian for helping me out. Meanwhile what we understood from certificate issuing authority that If we keep the webserver name un-ch

Re: [EMAIL PROTECTED] redirecting https to http..

2006-08-03 Thread Nick Kew
On Thursday 03 August 2006 04:13, Divakar wrote: > Hi, > > I would like to redirect all users trying > https://example.com/ ==> > http://example.com > > we are still waiting for ssl certificate, but > meanwhile we want to redirect users instead of > getting a popup with "Cert from unknown authority

RE: [EMAIL PROTECTED] redirecting https to http..

2006-08-02 Thread Boyle Owen
> -Original Message- > From: Brian Munroe [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 03, 2006 6:51 AM > To: users@httpd.apache.org > Subject: Re: [EMAIL PROTECTED] redirecting https to http.. > > > I am sorry I guess I was not clear. > > > > J

Re: [EMAIL PROTECTED] redirecting https to http..

2006-08-02 Thread Brian Munroe
I am sorry I guess I was not clear. Just redirection works fine.. The problem is when I issue https://example.com on browser I get certificate is not signed by proper authority.. The reason is I have created a self signed certificate and installed. I have sent certificate to get it signed but mea

Re: [EMAIL PROTECTED] redirecting https to http..

2006-08-02 Thread Divakar
How about using a Redirect instead of a Rewrite rule? Put something like this in the section for your SSL virtual host Redirectmatch ^/(.*)$ http://example.com/$1 Brian, I am sorry I guess I was not clear. Just redirection works fine.. The problem is when I issue https://example.com on bro

Re: [EMAIL PROTECTED] redirecting https to http..

2006-08-02 Thread Brian Munroe
On 8/2/06, Divakar <[EMAIL PROTECTED]> wrote: Hi, I would like to redirect all users trying https://example.com/ ==> http://example.com How about using a Redirect instead of a Rewrite rule? Put something like this in the section for your SSL virtual host Redirectmatch ^/(.*)$ http://example

[EMAIL PROTECTED] redirecting https to http..

2006-08-02 Thread Divakar
Hi, I would like to redirect all users trying https://example.com/ ==> http://example.com we are still waiting for ssl certificate, but meanwhile we want to redirect users instead of getting a popup with "Cert from unknown authority" when user try https://example.com So far I am unlucky to get