正在尋找一種簡單的方法來請求 Google Search Console 將您的網站頁面編入索引嗎?
以下是如何處理索引 https://must-know-resources-for-programmers.giessen.dev/ 的所有 764 個頁面的請求。
- 本地項目和資料夾
- pnpm 初始化
- pnpm 新增 google-indexing-script
- 更新package.json腳本“seo”:“node index.js”
- 觸碰index.js
- 將以下內容加入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);
登入後複製
- 依照 https://github.com/goenning/google-indexing-script?tab=readme-ov-file#preparation 中的步驟操作
- 下載憑證 JSON https://github.com/goenning/google-indexing-script/issues/2
- 重新命名下載的JSON並移動到index.js所在的資料夾
- 前往 Google 搜尋控制台
- 選擇要索引的網站
- 前往設定
- 使用者和權限
- 新增使用者
- 新增您在步驟 6 準備工作中建立的 .iam.gserviceaccount.com 中的電子郵件
- 在權限中,選擇擁有者
- 現在您可以在終端機中執行 pnpm seo,這應該會要求索引您網站網站地圖中的所有頁面
以上是正在尋找一種簡單的方法來請求 Google Search Console 將您的網站頁面編入索引嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!