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?