切换语言为:繁体

Nuxt3禁止google爬虫收录页面设置方法

  • 爱糖宝
  • 2024-07-22
  • 2063
  • 0
  • 0

采用 Nuxt3 技术站, 大概率是希望做 SSR, 希望网页更好的被搜索引擎收录

在 nuxt3 中可以这样去指定某一个页面不被搜索引擎收录

使用标签

<template>
    <NuxtLayout>
        <Head>
          <Meta name="robots" content="noindex, nofollow"></Meta>
        </Head>
    </NuxtLayout>
</template>

API写法

<script setup>
    definePageMeta({
      meta: [
        {
          name: 'robots',
          content: 'noindex, nofollow'
        }
      ]
    })
</script>

启动服务, 打开对应页面, 查看 HTML 代码结构

Nuxt3禁止google爬虫收录页面设置方法

这告诉搜索引擎不要索引这个页面,也不要跟踪这个页面上的任何链接。

上面2种写法都是可以的, 任选其一就行。

0条评论

您的电子邮件等信息不会被公开,以下所有项均必填

OK! You can skip this field.