I'm trying to redirect all version of my website URL to https://www. by using .htaccess file but getting problem with it.
ranglerz.comwww.ranglerz.comhttp://ranglerz.comhttp://www.ranglerz.comhttps://www.ranglerz.comhttps://ranglerz.com
all above versions of URLs are working but last URL is not redirecting with www, here is the code what I'm using in .htaccess file
RewriteCond %{HTTPS} off
RewriteCond %{HTTPS_HOST} !^www.ranglerz.com$ [NC]
RewriteRule ^(.*)$ https://www.ranglerz.com/$1 [L,R=301]