I have a website with the ssl for www.example.com. I have set up a htaccess redirect which redirects the user from http://example.com => http://www.example.com. If I enter https://www.example.com then it works. But if I enter https://example.com then it gives me a ssl error.
How do I redirect https://example.com to https://www.example.com without showing the ssl error?
I use the following code in my htaccess to redirect.
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]