Re: [us...@httpd] Question about HTTPS without SSL???

2010-03-04 Thread Eric Covener
> There is a way for to redirect HTTPS before SSL or make any ... for not to > show this "not valid certificate page" to the user? No. -- Eric Covener cove...@gmail.com - The official User-To-User support forum of the Apache H

[us...@httpd] Question about HTTPS without SSL???

2010-03-04 Thread Francisco Javier Morales López de Gamarra
Hello. I am trying to redirect HTTPS connections to HTTP like: https:www.mydomain.com -> http:www.mydomain.com (but I need not to show the invalid certificate page) I simply try: RewriteCond %{HTTP_HOST} ^www.mydomain.com [NC] RewriteRule ^(.*)$ http://www.mydomain.com/$1 [L,R=301] My probl