Guys i have litle problem with migrating site from HTTP to HTTPS.
I want to force all to www https
http://example.com->https://www.example.com(wrok)http://www.example.com->https.www.example.com(not work)
Above example return url with two www.www
https.www.www.example.com
My code
RewriteCond %{HTTP_HOST} !=""
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
What i do wrong?