View Single Post
  #8 (permalink)  
Old 01-04-2008, 07:58 PM
espmartin's Avatar
espmartin espmartin is offline
Senior Member
1086 posts this year. Platinum VIP!
Trusted Member - This user is a Master!
Last months UKWW Tokens: 3
 
Join Date: Jun 2007
Location: West Coast, USA (California)
Posts: 963
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Default

To remove the www from your domain (to match your setting in Google Webmaster Tools):
Code:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.yourdomain\.com
RewriteRule (.*) http://yourdomain.com/$1 [R=301,L]
And if you want to redirect TLDs to your main one:
Code:
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.yourdomain\.(net|info|org|name)
RewriteRule (.*) http://yourdomain.com/$1 [R=301,L]
Reply With Quote