I'm trying to apply a set of htaccess rules.
I want to redirect all http requests to https, and all requests to use the subdomain webshop rather than www.
I had a look at this thread but cannot make sense of how to apply it to my case.
Currently I have
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^playmobilland.dk [NC]
RewriteRule ^(.*)$ https://webshop.playmobilland.dk/$1 [L,R=301]
But this does not route www requests to https.
How do I add a redirect to send www requests to https as well?