.htaccess file not redirecting http://www. to https://www
问题 I have made a .htaccess file to redirect all website traffic to https://www. . This is my complete .htaccess file: RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.example\.com [NC] RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L] The below redirects work exactly as expected: http://example.com -> https://www.example.com https://example.com -> https://www.example.com https://www.example.com -> https://www.example.com Except: http://www.example.com -> http://www.example.com As shown