Thursday 26 June 2014

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]



htaccess redirect for SSL non-www to www

No comments:

Post a Comment