Einkaufswelten SEO Problem

Hallo, Schau dir mal die Dokumentation von Google zum Ajax-Crawling an: https://developers.google.com/webmaster … cification Speziell diesen Part: [quote]Pages without hash fragments It may be impossible or undesirable for some pages to have hash fragments in their URLs. For this reason, this scheme has a special provision for such pages: in order to indicate that a page without a hash fragment should be crawled again in _escaped_fragment_ form, it is possible to embed a special meta tag into the head of its HTML. The syntax for this meta tag is as follows:The following important restrictions apply: The meta tag may only appear in pages without hash fragments. Only „!“ may appear in the content field. The meta tag must appear in the head of the document. The crawler treats this meta tag as follows: If the page http://www.example.com contains the meta tag in its head, the crawler will retrieve the URL http://www.example.com?_escaped_fragment_=. It will index the content of the page as http://www.example.com and will display http://www.example.com in search results. As noted above, the mapping from the _escaped_fragment_ to the #! syntax is slightly different in this case: to retrieve the original URL, the web server instead simply removes the tokens _escaped_fragment_= (note the =) from the URL. In other words, you want to end up with the URL http://www.example.com instead of http://www.example.com#!. [/quote] Der Crawler geht also hin und ruft deine Startseite auf, sieht im Quelltext den Metatag und ruft die Seite dann über den ?_escaped_fragment-Parameter auf. Entsprechend musst du auch deine Seite selbst über diesen Parameter aufrufen wenn du „Abruf wie durch Google“ benutzt. Die Elemente sind da ggf. in der Preview verschoben, aber der HTML-Inhalt ist so wie er soll. http://www.example.com/?_escaped_fragment_= ist also die Lösung. Dies liefert einen HTML-Snapshot der Seite zurück mit allen Ajax-Inhalten. Die „Abruf wie durch Google“-Seite muss also auch mit diesem Link gefüttert werden. Moritz