I'm trying to redirect all version of my website URL to https://www
. by using .htaccess file but getting problem with it.
ranglerz.com
www.ranglerz.com
http://ranglerz.com
http://www.ranglerz.com
https://www.ranglerz.com
https://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]