如何取消分页页面的索引



如何在Shopify中为类别的分页页面添加noindex标记?我发现了一些声称可以做到这一点的应用程序,但我相信没有应用程序我也能做到。

感谢

您需要知道要针对哪个模板,通常Shopify中有分页的模板有:collection、blog、search。

所以你应该能够在theme.liquid:中做这样的事情

{% if template.name == "collection" or
template.name == "blog"
%}
<meta name="robots" content="noindex, nofollow" />
{% endif %}

这个^非常通用,所以如果你想更具体,你可以检查页面对象(收藏、产品、页面、博客、文章等(handle:

{% if collection.handle == "example" or
page.handle == "example" or
blog.handle == "example"
%}
<meta name="robots" content="noindex, nofollow" />
{% endif %}

最好让谷歌抓取分页URL,对每个URL使用自引用规范。一旦你添加nofollow,你就会阻止机器人。这可能会造成问题。

相关内容

  • 没有找到相关文章

最新更新