【发布时间】:2015-08-07 14:22:45
【问题描述】:
如果我将两个几乎相同的丰富 sn-ps 放在两个不同的页面上会不会有害?
例如,我有组织预览和联系页面。
预览页面上的richsn-p是:
{
"@context": "http://schema.org",
"@type": "Organization",
"legalName": "test name",
"url": "some url",
"email": "some email",
"address": {
"@type": "PostalAddress",
"addressLocality": "City, Country",
"postalCode": "16000",
"streetAddress": "Test street address"
}
}
联系页面上的richsn-p是:
{
"@context": "http://schema.org",
"@type": "Organization",
"legalName": "test name",
"url": "some url",
"address": {
"@type": "PostalAddress",
"addressLocality": "City, Country",
"postalCode": "16000",
"streetAddress": "Test street address"
},
"contactPoint": [
{
"@type": "ContactPoint",
"telephone": "123123",
"faxNumber": "123123",
"email": "some email",
"contactType": "customer service"
}
]
}
【问题讨论】:
标签: seo schema.org json-ld