作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试实现 Schema.org 标记( WebSite
类型):
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "Page URL",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.finelovedolls.com/fr/?s={search_term}&post_type=product",
"query-input": "required name=search_term"
}
}
</script>
target
是我的网站在使用搜索框时作为可变 URL 返回的内容。
URL Template:
https://www.finelovedolls.com/fr/?s={search_term}&post_type=product
(There is an error in your Sitelinks Search Box template: OFF_DOMAIN.)
最佳答案
Google 的结构化数据测试工具似乎会检查主机是否来自 target
值与来自 url
的主机相同值(value)。
所以如果你使用 "url": "https://www.finelovedolls.com/fr/"
而不是 "url": "Page URL"
,测试工具不应再报告此错误。
关于schema.org - 结构化数据测试工具 : "There is an error in your Sitelinks Search Box template: OFF_DOMAIN",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43467113/
我是一名优秀的程序员,十分优秀!