Herzlich willkommen im Archiv vom ABAKUS Online Marketing Forum
Du befindest Dich im Archiv vom ABAKUS Online Marketing Forum. Hier kannst Du Dich für das Forum mit den aktuellen Beiträgen registrieren.
Code: Alles auswählen
Header add refresh 10
Seit ca. mitte 2004 (seit dem Zeitpunkt ist es mir bekannt) wurde es anhand unzähliger Beispiele in einem Forum wo Google mitliest andauernd und an hand unzähliger Beispiele erklärt, vorgestellt, präsentiert....Airport1 hat geschrieben:Hm, naja mit Selbstjustiz erreicht man wohl nix .)
Der Druck muss eben ERHEBLICH sein. Wurde Google ueberhaupt je darauf angesprochen und ZWAR SO dass sie das Problem NACHVOLLZIEHEN konnten? Wenn naemlich jeder (weiter?)hin schreibt "meine arme Domain wurde durch Domain2 hijacked.." wird sich weiterhin nicht sonderlich viel tun...
via Matt Cutts BlogWhat do you do if you suspect a “302 hijacking” but don’t have my email address? There’s a convenient way that should get your report to the same engineering list, where it will get the same level of investigation. Go to https://www.google.com/support/bin/request.py and click “I’m a webmaster inquiring about my website” then select “Why my site disappeared from the search results or dropped in ranking” and click continue. In the webform that you get to, make sure you put “canonicalpage” in the Subject line, then put the details in the Message body. Someone will route that message to an engineering mailing list where we dissect claims of canonicalization problems (that is, picking the wrong url).
Airport1 hat geschrieben:@Kristian: guggst Du Source von https://www.tangible.de/static/ an, BEVOR es umleitet [also flink sein] - dort ist ein Meta Refresh drinne.
Code: Alles auswählen
use LWP::UserAgent;
my $ua = LWP::UserAgent->new;
$ua->max_redirect(0);
my $req = HTTP::Request->new(GET => "http://www.tangible.de/static/");
my $res = $ua->request($req);
if ($res->is_success) {
print $res->content;
}else {
print $res->status_line, "\n";
}