Every image in the folder
http://www.example.com/files/thumbs
needs a redirect to
http://images.example.com/files/thumbs
I tried:
RewriteRule ^files/thumbs(.*)$ http://images.example.com/$1 [L,R=301]
but result is:
http://images.example.com//test.jpg
instead of
http://images.example.com/files/thumbs/test.jpg
thank you