Member
alvera_smith
How to redirect http://domain.com to https://www.domain.com?
jose_gulgowski
@alvera_smith
To redirect "http://domain.com" to "https://www.domain.com," you can follow these steps:
1 2 3
RewriteEngine On RewriteCond %{HTTP_HOST} ^domain.com [NC] RewriteRule ^(.*)$ https://www.domain.com/$1 [L,R=301]