Domain bei Google entfernen

Post non-phpwcms related topics here - but I don't want to see "hey check this or that other cms". Post if you have a point or worthwhile comment, don't post just to increase you post count!
Post Reply
User avatar
Marceau
Posts: 201
Joined: Sun 23. Apr 2006, 01:52
Location: Leipzig, Germany
Contact:

Domain bei Google entfernen

Post by Marceau »

Hallo.
Folgende Frage: Eine Kundin hat für ihre Internetseite 2 Domains. Beide tauchen bei Google auf. Nun möchte sie aber, dass nur eine indiziert ist/bleibt. Habe jetzt schon mal auf Google geschaut, ob es irgendeine Möglichkeit gibt die Leute anzuschreiben, aber konnte leider nichts finden. Habt ihr eine Idee, wie das anzustellen ist?

Liebe Grüße
There are 10 types of people in the world: Those who understand binary and those who don't
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Re: Domain bei Google entfernen

Post by juergen »

Vollkommen sicherer Weg: Löschen. fallls das nicht sein soll, eine leere Seite draufschalten, 2 Wochen ist sie weg ,
User avatar
Marceau
Posts: 201
Joined: Sun 23. Apr 2006, 01:52
Location: Leipzig, Germany
Contact:

Re: Domain bei Google entfernen

Post by Marceau »

Hmmm danke schon mal für die Antworten.
So ähnlich habe ich mir das auch gedacht, aber die Domain die aus Google weg soll, soll trotzdem auf die Website "zeigen", sie soll halt nur nicht bei Google auftauchen. Gibts da ne Möglichkeit über die robots.txt? Aber soweit, wie ich das bisher verstanden habe, kann man damit nur sagen wer welchen Zugriff auf bestimmte Verzeichnisse/Inhalte hat. Ausgeschlossen dabei ist der Fakt, über welche Domain der Crawler/Spider auf die Site kommt...oder?
There are 10 types of people in the world: Those who understand binary and those who don't
User avatar
markus s
Moderator
Posts: 654
Joined: Sat 16. Dec 2006, 19:21
Location: Radfeld / Tirol
Contact:

Re: Domain bei Google entfernen

Post by markus s »

serverseitiges redirect einrichten.
301: Moved permanently
ist das sicherste...

oder mit htacess:
Redirect status /quelladresse http://zieldomain.de
moderator
propelled by fresh air from tirol
XING|FACEBOOK|OMENTO
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Re: Domain bei Google entfernen

Post by flip-flop »

.htaccess

so wird wirklich nur diese Domain (http://www.example.com) beim Seitenaufruf verwendet, egal was dort an Domain angeflogen kommt.

Code: Select all

RewriteCond %{HTTP_HOST} !www.example.com
RewriteCond %{HTTP_HOST}   !^.*\..*\..* [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
und zwar hier immer mit der SubDomain www.
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
Post Reply