Just simple redirect from old domain to new domain permanently in simple way using htaccess like
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteEngine on | |
RewriteCond %{HTTP_HOST} ^www\.old-domain-name\.com$ [OR] | |
RewriteCond %{HTTP_HOST} ^old-domain-namey\.com$ | |
RewriteRule ^(.*)$ http\:\/\/new-domain-name\.com\/$1 [R=301,L] |