Wednesday, 1 July 2009

htaccess redirect for SSL non-www to www

Use the following code in the htaccess file under the public_html folder for the concerned domain :
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.com [NC]
RewriteRule ^(.*)$ https://www.domain.com/$1 [L,R=301]

No comments:

Post a Comment