首页 >web前端 >js教程 >正在寻找一种简单的方法来请求 Google Search Console 将您的网站页面编入索引吗?

正在寻找一种简单的方法来请求 Google Search Console 将您的网站页面编入索引吗?

Susan Sarandon
Susan Sarandon原创
2024-12-27 11:47:09130浏览

Looking for an easy way to request Google Search Console to index your website pages?

正在寻找一种简单的方法来请求 Google Search Console 将您的网站页面编入索引吗?

以下是如何处理索引 https://must-know-resources-for-programmers.giessen.dev/ 的所有 764 个页面的请求。

  1. 本地项目和文件夹
    1. pnpm 初始化
    2. pnpm 添加 google-indexing-script
    3. 更新package.json脚本“seo”:“node index.js”
    4. 触摸index.js
    5. 将以下内容添加到index.js文件中
import { index } from "google-indexing-script";
import serviceAccount from "./service_account.json" assert { type: "json" };

index("<WEBSITE_URL_HERE>", {
  client_email: serviceAccount.client_email,
    private_key: serviceAccount.private_key,
  quota: {
    rpmRetry: true
  }
})
  .then(console.log)
  .catch(console.error);

  1. 按照 https://github.com/goenning/google-indexing-script?tab=readme-ov-file#preparation 中的步骤操作
  2. 下载凭证 JSON https://github.com/goenning/google-indexing-script/issues/2
  3. 重命名下载的JSON并移动到index.js所在的文件夹
  4. 前往 Google 搜索控制台
    1. 选择要索引的网站
    2. 前往设置
    3. 用户和权限
    4. 添加用户
    5. 添加您在第 6 步准备工作中创建的 .iam.gserviceaccount.com 中的电子邮件
    6. 在权限中,选择所有者
  5. 现在您可以在终端中运行 pnpm seo,这应该会请求索引您网站站点地图中的所有页面

以上是正在寻找一种简单的方法来请求 Google Search Console 将您的网站页面编入索引吗?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn