HI Guys, I need Help for one topic. instead of adding command in .htacess file i have write this commands in apache config file. Because msn crawling my site without www. means http://sitename.com Commands: RewriteEngine On RewriteCond %{HTTP_HOST} ^sitename.com$ RewriteRule ^(.*)$ http://www.sitename.com/$1 [R=permanent] *********** But there is no effect. The negative impact what i saw is msn crawler not reading my title and description meta tags. Please suggest me what can i do? Help Needed Thanks
Try this instead RewriteEngine On RewriteCond %{HTTP_HOST} ^sitename.com RewriteRule ^(.*) http://www.sitename.com/$1 [R=301,L]