use a 302 redirect in your config:
ServerName example.com
Redirect /cars http://my_new_site.com/cars/
If you need more flexibility, you can use mod_rewrite, and then use those rewrites:
RewriteEngine on
RewriteRule ^/(.*)$ http://my_new_site.com/$1 [NC]
There's a nice documentation at apache.org.