Hi, is there a way to link two different domains to point to one website? For ex. www.whatever.com goes to www.whatever1.com to the same website. Need help.
Make sure that you use a 301 redirect. Here's some php you can place in the web root - index.php of one of the domains to do a 301 (permanent) redirect to the other: <? header( "HTTP/1.1 301 Moved Permanently" ); header( "Status: 301 Moved Permanently" ); header( "Location: http://www.new-url.com/" ); exit(0); ?> Code (markup):