Forum Moderators: open
One of our sites is quite popular but the name is often misspelled.
We have registered all the common mispelled type-in words and forwarded them by URL redirect via the domain control panel at the registrar to our main site URL index page.
Is this okay with Google or there a better way to do it.
Thanks
The posh way - the 301 redirect - essentially seamlessly maps the misspelled domain to the new one. But maybe you can't do that with your ISP.
Another is the Meta Refresh in the HTML. I used to have a site with a MetaRefresh on its domain name, which refreshed me to the top of a site I'd placed on a free ISP. The domain name was indexed, the redirect was mapped out of Google as being identical, and the rest of the site did just fine.
Another is the captive frame forwarding that one of my domains has. Visitors with a frames-compatible browser see the domain name and inside it a single frameset with the redirected page. Google, however, sees the no-frames content, which ISN'T a duplicate, it's just a "click here to enter the website". And the wording is such that if you had multiple ones of these, they'd all have different text in Google.
So which is your forwarding? Then we can help!
DerekH
This wouldn't be what you wanted, I think.
Might be better to replace the auto redirect with a page that says
"Welcome to #*$!xx
Buy widgets on-line
Enter Here"
And then do an ordinary link to your (common) site.
DerekH
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST}!^www\.mydomain\.com
RewriteRule ^(.*)$ [mydomain.com...] [R=301,L]
Basically these rules will check the domain of any incoming request and will do a 301 redirect to www.mydomain.com if the domain is anything other than www.mydomain.com
I assume if you're running servers you are running BIND or some flavor of DNS, why redir at the registrar? Instead handle this stuff at your own DNS.
Also using MOD ReWrite as outlined above basically points all of the URL's to the same site with 100% of the same content, this will most likely trigger the dup content filter at G.
I use to do the same thing for a website I have and I got penalized by G.