On 5/7/07, Ryan Huff <[EMAIL PROTECTED]> wrote:


Okay I have SSL up and working just fine on Apache 2.2.4.

    I have my Cert for 'mydomain.com' however when people access
'www.mydomain.com' the browser says that the CA didn't issue the certificate
for the domain that the browser is accessing.  Obviously this is due to the
'www.'.

    Now, I need to know how to fix that?  How do I truncate 'www.' out of
the URI before Apache processes the request?  Or maybe its a redirect?
Please help ... I am going NUTS!

P.S
I have a mod_rewrite condition that will kick all :80 over to :443 (so if
you access the site using http:// it automatically goes to https://)

If people are requesting directly (or linking to)
https://www.mydomain.com/, then you are screwed. In order to redirect,
you first need the request to go through the SSL negotiation, so they
will get the warning message.

If people are requesting http://www.mydomain.com/, then you should
simply change your rewrite rules to send them over to
https://mydomain.com/. If you need help with that, you'd need to
provide more details about what you are doing.

Joshua.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to