I want to know how to redirect http.domain.com tohttp:// www.domain.com I am using windows hosting usinf parallels plesk panel 9.5.4
You need to write following statements into .htaccess file Options +FollowSymLinks Options +Indexes RewriteEngine on RewriteCond %{HTTP_HOST} ^domain\.com$ [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
Use this two lines in your .htaccess RewriteCond %{HTTP_HOST} ^domain\.com$ [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L] PHP: