Drupal 7 .htaccess File Not Forcing Redirects to HTTPS – Apache
I installed a security certificate installed on my website, and want to force all urls to use 'https' as well as 'www'. I updated the .htaccess by uncommenting: RewriteCond %{HTTP_HOST} . RewriteCond %{HTTP_HOST} !^www. [NC] RewriteRule ^ http%{ENV:protossl}://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] However,…