I am trying to redirect all request on my site to url of format:

https://www.mydomain.com 

as I have SSL certificate for www.mydomain.com. I have written following rewrite rules in my httpd.conf file to do this:

RewriteCond %{HTTP_HOST} !^www [NC]
RewriteRule $ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R]

RewriteCond %{HTTPS} off
RewriteRule $ https://%{HTTP_HOST}%{REQUEST_URI} [L,R]

Out of the following possible formats, only one is not working:

mydomain.com - working
www.mydomain.com - working
http://mydomain.com - working
https://mydomain.com – not working
https://www.mydomain.com - working
http://www.mydomain.com - working

Can anyone explain the reason behind and solution for this issue?

Update:

When I try to hit the URL which is not working (https://mydomain.com), I get an invalid SSL certificate error (as my certificate is valid for www.mydomain.com and not mydomain.com) and hence none of my Rewrite rule is getting executed as http connection is not yet made.

Is there any solution for this issue?

link|improve this question

feedback

1 Answer

you may want to try

rewritecond %{SERVER_PORT} !^443$

instead of

RewriteCond %{HTTPS} off
link|improve this answer
This doesn't work as well, Please read my update in question above. – Ankit Feb 7 at 10:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.