2017-04-26 6 views
0

Ich bin vor Problem mit dieser ListItem Schema-Validierung auf https://search.google.com/structured-data/testing-tool/u/0/ Fehlern ErstListItem Schema [schema.org/ItemList] Fehler: "Alle für die URL angegebenen Werte müssen die gleiche Domain haben."

All values provided for url must have the same domain.

I dieselbe Domäne in jedem URL-Feld zur Verfügung gestellt habe.

{ 
    "@context": "http://schema.org", 
    "@type": "ItemList", 
    "name": "Tech News", 
    "url": "http://m.gadgetsnow.com/tech-news", 
    "itemListElement": [ 
     { 
      "@type": "ListItem", 
      "position": "1", 
      "url": "http://m.gadgetsnow.com/tech-news/are-tvs-going-out-of-fashion/articleshow/58375579.cms", 
      "name": "Are TVs going out of fashion?", 
      "image": { 
       "@type": "ImageObject", 
       "contentUrl": "http://m.gadgetsnow.com/photo/58375579.cms", 
       "width": "360", 
       "height": "270", 
       "url": "http://m.gadgetsnow.com/photo/58375579.cms" 
      } 
     }, 
     { 
      "@type": "ListItem", 
      "position": "2", 
      "url": "http://m.gadgetsnow.com/tech-news/reliance-jio-discounts-are-not-going-anywhere-for-now-heres-why/articleshow/58374335.cms", 
      "name": "Reliance Jio discounts are not going anywhere for now, here's why", 
      "image": { 
       "@type": "ImageObject", 
       "contentUrl": "http://m.gadgetsnow.com/photo/58374335.cms", 
       "width": "360", 
       "height": "270", 
       "url": "http://m.gadgetsnow.com/photo/58374335.cms" 
      } 
     } 
    ] 
} 
+0

[Wahrscheinlich die gleichen Fehler] (http://stackoverflow.com/a/40400319/1591669). – unor

Antwort

1

Sie können versuchen, die richtige Version von ItemList verwenden. Es gibt Separately und Combined markiert bis ItemLists wie verwiesen here.

  • If your items are on the same page, please use the version with items inside, the Combined one.
  • Otherwise, if you point to different pages inside and your items are not on one page, please DON’T put item element with type and other description inside, the Separately marked up one.

Weitere Referenzen:

+0

Es liegt ein Fehler im Validator vor. Markup [hier] (https://developers.google.com/search/docs/guides/mark-up-listings#how-to-mark-up-host-specific-lists) wirft ebenfalls Fehler auf SDTT –

Verwandte Themen