Forum Moderators: open
What I think you really want, is to redirect from abcd.com to bcde.com. (note different URLS.)
That is at least do-able.
Right now, I'm more concerned with sites that redirect to mine in nasty ways. -Larry
Step 1:
Find out if your site is on an Apache server. If so,
Step 2:
Find out if you are allowed to use an .htaccess. If yes,
Step 3:
Is the Rewrite module enabled? If positive,
Step 4:
With a text editor, create a file and save it as htaccess.txt
Step 5:
Paste this code in there and change 'example.com' in your domain name on both lines:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
Step 6:
Upload the file to the root of your domain (where your index file is) and rename it to .htaccess
Step 7:
Empty your browser cache and go to your domain with www in front of it and see what happens.
Step 8:
Let us know..
Adding the 301 redirect completely fixes the problem. Only one version of the pages will be indexed, and it will be the same version for every page of the site.