my primary domain is makemyhome.com
and another one mmh.com
now when a user click on the link mmh.com/about
it should redirect to makemyhome.com/about
.
when a user click on mmh.com/contact
it should redirect to makemyhome.com/contact
right now my htaccess:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^old.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.old.com [NC]
RewriteRule ^(.*)$ https://new.com/$1 [L,R=301,NC]
With the above code in htaccess doesn't work the way i want.
I need suggestion. Thanks!