To redirect website from one domain to another domain using .htacess file
RewriteEngine On
RewriteCond %{HTTP_HOST} ^targeturl.com
RewriteRule (.*) http://www.oldurl.com/$1 [R=301,L]
RewriteEngine On
RewriteCond %{HTTP_HOST} ^targeturl.com
RewriteRule (.*) http://www.oldurl.com/$1 [R=301,L]