RewriteEngine onRewriteCond %{HTTP_HOST} ^origindomain.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.origindomain.com [NC]
RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301,NC]
[FONT=proxima_nova_rgregular]Redirects are not a good thing in [/FONT]SEO
#This for the domain
Redirect 301 / Example Domain
#This for the folders
Redirect 301 /old-folder http://www.example.com/new-folder
that's true but you need use 301 [L,R=301,NC]Htaccess will help you redirect without lost any traffic or affect to SEO.