seo代码优化
简述:h1-h6标签 注意:每个页面只有一个h1标签h2-h6标签随便加<img src="路径" alt="标题名称/图片名称">

h1-h6标签
注意:
每个页面只有一个h1标签
h2-h6标签随便加
<img src="路径" alt="标题名称/图片名称">
如果页面还需要存在但不希望被搜索引擎收录:
在 <head> 内加入:<meta name="robots" content="noindex">
Shopify 页面/主题文件里加入上面标签即可。
{% if product.tags contains 'dead-link' %}
<meta name="robots" content="noindex">
{% endif %}
<meta name="robots" content="noindex,follow">
1️⃣ 不收录,但允许爬虫继续爬链接
<meta name="robots" content="noindex,follow">
2️⃣ 不收录,也不跟踪链接
<meta name="robots" content="noindex,nofollow">
3 但收录允许爬虫继续爬链接
<meta name="robots" content="index,follow">