Now I use a full 302 redirect like this:
Redirect 302 / http://new.site.com/folder/ Code 302 is used specifically.
Here I found the code at my request to redirect from anywhere except for a specific folder.
RewriteEngine on RewriteCond %{REQUEST_URI} !^/somefolder RewriteRule ^(.*) http://new.site.com/ [L,R] But how to make it work by code 302?