Apache Config File Question

Discussion in 'Apache' started by seoaddict, Mar 10, 2006.

  1. #1
    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
     
    seoaddict, Mar 10, 2006 IP
  2. SpeedyDomainRegistration

    SpeedyDomainRegistration Peon

    Messages:
    170
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Try this instead

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^sitename.com
    RewriteRule ^(.*) http://www.sitename.com/$1 [R=301,L]