使用附加链接搜索栏 google
Using sitelinks search bar google
我正在关注 this guide by Google 在我的网站上添加附加链接搜索栏。结构化数据标记工具显示一切都是正确的。但是:
- 搜索栏没有出现在我网站的搜索结果中。
Google 已将页面 www.example.com/search?q=%7Bsearch_term_string%7D
编入索引:
除了站点 URL,我的代码与示例中解释的完全相同。我究竟做错了什么?或者这是预期的行为?
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "http://www.example.com/",
"potentialAction": {
"@type": "SearchAction",
"target": "http://www.example.com/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
您的搜索似乎有误,请搜索 example 或 example.com:
根据 this 在 google 显示之前需要大量搜索 - moz.com 指出:
您的网站是否收到了大量的导航或品牌搜索流量?
例如,关键字词组 'moz' 和 'moz.com' 每周为该网站带来数千次访问。品牌和导航搜索量是一个很好但不完美的指标,表明附加链接搜索框出现的可能性。
我正在关注 this guide by Google 在我的网站上添加附加链接搜索栏。结构化数据标记工具显示一切都是正确的。但是:
- 搜索栏没有出现在我网站的搜索结果中。
Google 已将页面
www.example.com/search?q=%7Bsearch_term_string%7D
编入索引:
除了站点 URL,我的代码与示例中解释的完全相同。我究竟做错了什么?或者这是预期的行为?
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "http://www.example.com/",
"potentialAction": {
"@type": "SearchAction",
"target": "http://www.example.com/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
您的搜索似乎有误,请搜索 example 或 example.com:
您的网站是否收到了大量的导航或品牌搜索流量?
例如,关键字词组 'moz' 和 'moz.com' 每周为该网站带来数千次访问。品牌和导航搜索量是一个很好但不完美的指标,表明附加链接搜索框出现的可能性。