View Single Post
Old 12-18-2006, 11:55 AM  
StarkReality
Confirmed User
 
StarkReality's Avatar
 
Join Date: May 2004
Location: 4 8 15 16 23 42
Posts: 4,444
Time to define the standard domain in your .htaccess, having the domain.com and www.domain.com version spidered isn't really helpful. For getting rid of domain.com and redirecting all requests to www.domain.com use:
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com
RewriteRule ^(.*)$ http://www.domain.com/$1 [r=301,L]
StarkReality is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote