Redirect entire site except one folder with .htaccess
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/foldernottoredirect/
RewriteRule (.*) http://newsite.com/ [R=301,L]
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/foldernottoredirect/
RewriteRule (.*) http://newsite.com/ [R=301,L]