Thread: PR Update! YAY
View Single Post
04-24-2007, 08:18 AM
#79
Gloria is offline Gloria
Status: I'm new around here
Join date: Apr 2007
Location:
Expertise:
Software:
 
Posts: 23
iTrader: 0 / 0%
 

Gloria is on a distinguished road

  Old

Originally Posted by online View Post
Why this confusion with and without www ? What's the universal procedure?
it is best to redirect 301 to www or www to non-www to prevent any confusion/This is example to redirect non-www to www:
Code:
# redirect non-www to www domain
RewriteCond %{HTTP_HOST} ^yoursite\.com[NC]
RewriteRule (.*) http://www.yoursite.com/$1 [R=301,L]