Forum Moderators: open

Message Too Old, No Replies

Can 5 domain names redirect to one site?

         

SiskinSoft

1:27 pm on Mar 2, 2003 (gmt 0)

10+ Year Member



I have a site and 5 domain names
www.xxx.com
www.sellcar.com
www.sellbus.com
www.sellxxx.com
www.sellxxx.com

The domain www.xxx.com is configured on site sever.
It is the main domain name.

Now I want to redirect other 4 domain names to this site.
Example:

www.sellcar.com redirect to www.xxx.com/car
www.sellbus.com redirect to www.xxx.com/bus
...

I will sumbit these 5 domain name to google.
Google will index all 5 domain name?
Google will think i spam?(not index any domain name)
Google only index the www.keyword1.com?
Other Result?

[edited by: SiskinSoft at 1:48 pm (utc) on Mar. 2, 2003]

chiyo

1:37 pm on Mar 2, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Why would you do this other than try to get an advantage over others for reasons other than good content and relevance?

I think if you really want to use those other domains and redirect them to the one domain name just robot.txt out the other domain names.

[I konw that sounds silly, but I dont really inderstand why you need to do this. Why not have all five domains each focused on a diff keyword - bus, car etc? Im not saying that you are probably trying to spam but some would, maybe even Google! ]

Then you can use them by taking off the robot txt when you have enough unique content to support 5 distinct domains.

Shak

1:44 pm on Mar 2, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



1 of the common reasons for this when "keyword domains" get 1000s of type-in visitors, and therefore these domains are used for traffic purposes.

I would NOT advise trying to use them for SEO purposes, and more specifically to try and dupe Google.

If you really want to go down that route, than you "may" want to consider having "unique content" which then could possibly drive traffic to the main site.

Shak

chiyo

1:54 pm on Mar 2, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Excellent idea shak.

If its for type in domains then search engine listings are not required, so robot txting them out is an option, as is cloaking but thats a very risky road.

If it was me i would use develop some uniqiue content on each domain, and judiciously link to your main selling domain. In time, and if you dont get penalised they could stand on their own.

SiskinSoft

1:57 pm on Mar 2, 2003 (gmt 0)

10+ Year Member



www.xxx.com/car

in this folder have index.html

www.xxx.com/bus is the same

in the car folder have a site about car sell

in the bus folder have a site about bus sell

every site content is different.

But all content listed in www.xxx.com/index.html

Will google index www.xxx.com,www.sellcar.com and www.sellbus.com?

Shak

2:03 pm on Mar 2, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



siskinsoft,

I hate to say, but you are asking questions which have been answered 100s of times before.

Feel free to use the Site Search at top of page, or alternatively looking at domain name forum etc etc.

all your answers are there, if you truly want them.

Shak

[edited by: Shak at 2:10 pm (utc) on Mar. 2, 2003]

SiskinSoft

2:07 pm on Mar 2, 2003 (gmt 0)

10+ Year Member



I am a rookie here.
Thank for your remind.
I will do this now.
Thanks again.

Shak

2:10 pm on Mar 2, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



siskin,

no worries, we were all rookies once. :)

what I was trying to say was, that almost any web related question has been asked and answered here most of the time.

I know it takes a bit of work, but the answers are already there, and should prove very helpful to you in the long-run.

Good luck.

Shak

giggle

4:40 pm on Mar 2, 2003 (gmt 0)

10+ Year Member



Cheers Chiyo.

giggle

5:00 pm on Mar 2, 2003 (gmt 0)

10+ Year Member



Cheers Chiyo.

Robert Charlton

6:38 pm on Mar 2, 2003 (gmt 0)

WebmasterWorld Administrator 10+ Year Member Top Contributors Of The Month



I sounds like you're talking about setting up "mirror sites," sites which show the same content on multiple domains. My advice is don't do it.

Here's a recent thread that may answer some of your questions:

[webmasterworld.com...]

Solamande

7:44 pm on Mar 2, 2003 (gmt 0)

10+ Year Member



"I hate to say, but you are asking questions which have been answered 100s of times before. "

That's why I never post.

HitProf

7:53 pm on Mar 2, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



>That's why I never post.

Welcome on board, Solamande. I hope you've already found a lot of answers, but don't hesitate to ask if you can't find it for your specific promblem.

Solamande

9:03 pm on Mar 2, 2003 (gmt 0)

10+ Year Member



Thanks HitProf,
I've been reading and learning here for about a year. My kids have added jdMorgan to their nightly prayer "god-bless" coda, right after mommy and daddy. They don't ask why, they just do what I ask. They're good kids.

jdMorgan

1:43 am on Mar 3, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



:)

Good kids! - Thank you.

Jim

Krapulator

4:59 am on Mar 3, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I wasnt aware that you could use robots.txt to prevent particular domain names being indexed when there are multiple names pointing to your website.

Does anyone have an example of the syntax for this?

rfgdxm1

5:06 am on Mar 3, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Krapulator:

User-agent: *
Disallow: /

jdMorgan

5:21 am on Mar 3, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Krapulator,

The simplest way to do it is to redirect requests for robots.txt to different files depending on what domain name was requested. While I haven't personally done it, something like this should work on an Apache server with mod_rewrite support:


RewriteCond %{HTTP_HOST} ^(your_domain1)\.com [OR]
RewriteCond %{HTTP_HOST} ^www\.(your_domain1)\.com [OR]
RewriteCond %{HTTP_HOST} ^(your_domain2)\.com [OR]
RewriteCond %{HTTP_HOST} ^www\.(your_domain2)\.com
# For use in httpd.conf only:
RewriteRule ^/robots\.txt$ /robots_%1.txt [L]
# For use in .htaccess only:
RewriteRule ^robots\.txt$ /robots_%1.txt [L]

Where %1 backreferences the domain name in the last RewriteCond which matches.

This would redirect requests for www.yourdomain1.com/robots.txt to /robots_yourdomain1.txt, and requests for yourdomain2.com/robots.txt to /robots_yourdomain2.txt, etc. All you have to do is create multiple robots.txt files with the domain name appended, and change the content of each according to what you want the robot to be able to index in that domain.

HTH,
Jim

Krapulator

5:38 am on Mar 3, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Thanks for that Jim.

Unfortunately I'm on a satanic MS server
(no mod re-write :( )