I'm currently redirecting all requests for www.example.com to example.com. I have this working nicely with this code found elsewhere on stackoverflow:
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]
So far so good. The problem I have is that I also need to ensure that the Spanish version of my site also redirects — www.example.com/es needs to redirect to example.com/es, but this doesn't work with the code shown above.
What would I need to add to make the redirection work?
Thanks for your help!

(.*)and$1. Do you have any other rewrite rules? – Michael Berkowski Feb 2 at 22:10www.example.com/es->www.es.example.comorwww.example.es. – David Ravetti Feb 2 at 22:29/es)? If so, what happens when the incoming URL holds a different folder:www.example.com/anyfolder? – faa Feb 2 at 22:39RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]RewriteRule ^(.*)$ http://example.com/es/$1 [L,R=301](I can't add this as a solution yet as I don't have a rep on Stack Overflow.) – Futurefabric Feb 2 at 23:39