Hi, Can someone help me what should I enter in .htaccess to redirect http://www.domain.com to https://www.domain.com I already have entered the redirection rule to redirect http://domain.com to https://www.domain.com Please advise
This should do it: RewriteCond %{SERVER_PORT} ^80$ RewriteCond %{HTTP_HOST} ^www\.domain\.com$ RewriteRule ^/?$ https://www.domain.com [R=301,L] Code (markup):