Friday 21 September 2012

.htaccess for non www to www


AddType application/x-httpd-php5 .php .htm .html
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.luxuryislandcollection.com$ [NC]
RewriteRule ^(.*)$ http://www.luxuryislandcollection.com/$1 [L,R=301]
RewriteRule ^(.*)index.html$ http://www.luxuryislandcollection.com/$1 [R=301,L]
RewriteRule ^(.*)index.php$ http://www.luxuryislandcollection.com/$1 [R=301,L]