Witango-Talk: [OT] Security Certificates

2004-07-20 Thread Michael Dittbrenner
We have a security certificate up for www.x.com which works fine. Now if you go to http://x.com a message comes up saying that there is an issue with the certificate. Bascially the certificate is for www..com Does anyone know a way not to get that message up without having to

Re: Witango-Talk: [OT] Security Certificates

2004-07-20 Thread Stefan Gonick
I set up my secure sites to automatically redirect to www.domain.com when someone comes to my site using just domain.com. Alternatively, you can hard code the links or forms that take you your secure pages to use the www.domain.com version. Stefan At 10:58 PM 7/20/2004, you wrote: We have a

RE: Witango-Talk: [OT] Security Certificates

2004-07-20 Thread Troy Sosamon
: Michael Dittbrenner [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 8:59 PM To: [EMAIL PROTECTED] Subject: Witango-Talk: [OT] Security Certificates We have a security certificate up for www.x.com which works fine. Now if you go to http://x.com a message comes up saying

Re: Witango-Talk: [OT] Security Certificates

2004-07-20 Thread Bill Conlon
In apache, use mod-rewrite to redirect all requests to the site with the certificate. VirtualHost * DocumentRoot /wwwroot ServerName xx.com RewriteEngine On RewriteRule ^ http://www.xx.com/ /VirtualHost I set up my secure sites to automatically redirect