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]