I got a snippet to redirect all www.domain.com requests to domain.com from another SO question:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
Unfortunately it results in an extra trailing slash:
www.domain.com redirects to domain.com// and
www.domain.com/path/ redirects to domain.com//path/
Should I really add an extra rule to remove the trailing slash? Or is there a problem with the above snippet?