google-official-seo-guide

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Google Official SEO Guide

谷歌官方SEO指南

Comprehensive assistance with Google Search optimization, SEO best practices, and search visibility improvements based on official Google documentation.
基于谷歌官方文档,为Google Search优化、SEO最佳实践以及提升搜索可见性提供全面指导。

When to Use This Skill

何时使用本技能

This skill should be triggered when users ask about:
当用户询问以下内容时,应触发本技能:

SEO & Search Optimization

SEO与搜索优化

  • Improving website ranking in Google Search
  • Implementing SEO best practices
  • Optimizing meta tags, titles, and descriptions
  • Fixing crawling or indexing issues
  • Understanding how Google Search works
  • 提升网站在Google Search中的排名
  • 实施SEO最佳实践
  • 优化元标签、标题和描述
  • 修复抓取或索引问题
  • 了解Google Search的工作原理

Structured Data & Rich Results

结构化数据与富结果

  • Adding VideoObject, BroadcastEvent, or Clip structured data
  • Implementing schema.org markup for rich results
  • Creating sitemaps and robots.txt files
  • Setting up breadcrumb navigation
  • Configuring hreflang for multi-language sites
  • 添加VideoObject、BroadcastEvent或Clip结构化数据
  • 为富结果实施schema.org标记
  • 创建站点地图和robots.txt文件
  • 设置面包屑导航
  • 为多语言网站配置hreflang

Technical SEO

技术SEO

  • Mobile-first indexing optimization
  • JavaScript SEO and rendering issues
  • Managing duplicate content with canonical tags
  • Configuring robots meta tags
  • URL structure and internal linking
  • 移动优先索引优化
  • JavaScript SEO与渲染问题
  • 使用规范标签管理重复内容
  • 配置robots元标签
  • URL结构与内部链接

Search Console & Monitoring

Search Console与监控

  • Using Google Search Console reports
  • Debugging search visibility issues
  • Monitoring crawl errors and indexing status
  • Analyzing search performance metrics
  • 使用Google Search Console报告
  • 排查搜索可见性问题
  • 监控抓取错误和索引状态
  • 分析搜索表现指标

Content & Links

内容与链接

  • Writing effective anchor text
  • Internal and external linking strategies
  • Avoiding spam policies violations
  • Managing site migrations and redirects
  • 撰写有效的锚文本
  • 内部与外部链接策略
  • 避免违反垃圾内容政策
  • 管理站点迁移与重定向

Key Concepts

核心概念

The Three Stages of Google Search

Google Search的三个阶段

  1. Crawling: Googlebot discovers and fetches pages from the web
  2. Indexing: Google analyzes page content and stores it in the index
  3. Serving: Google returns relevant results for user queries
  1. 抓取:Googlebot发现并获取网页内容
  2. 索引:Google分析网页内容并将其存储在索引库中
  3. 展示:Google为用户查询返回相关结果

Important SEO Principles

重要SEO原则

  • Mobile-First Indexing: Google primarily uses the mobile version of content for indexing and ranking
  • Canonical URLs: Specify the preferred version of duplicate or similar pages
  • Structured Data: Use schema.org markup to help Google understand your content
  • Search Essentials: Technical, content, and spam requirements for Google Search eligibility
  • 移动优先索引:Google主要使用移动端内容进行索引和排名
  • 规范URL:指定重复或相似页面的首选版本
  • 结构化数据:使用schema.org标记帮助Google理解你的内容
  • 搜索基本要求:符合Google Search收录资格的技术、内容和反垃圾内容要求

Common Structured Data Types

常见结构化数据类型

  • VideoObject: For video content and features
  • BroadcastEvent: For livestream videos (LIVE badge)
  • Clip: For video key moments/timestamps
  • SeekToAction: For auto-detected key moments in videos
  • VideoObject:适用于视频内容及相关功能
  • BroadcastEvent:适用于直播视频(LIVE标识)
  • Clip:适用于视频关键时间点/章节
  • SeekToAction:适用于自动识别视频中的关键时间点

Quick Reference

快速参考

Example 1: Basic VideoObject Structured Data

示例1:基础VideoObject结构化数据

json
{
  "@context": "https://schema.org",
  "@type": "VideoObject",
  "name": "Video title",
  "description": "Video description",
  "thumbnailUrl": [
    "https://example.com/photos/1x1/photo.jpg",
    "https://example.com/photos/4x3/photo.jpg",
    "https://example.com/photos/16x9/photo.jpg"
  ],
  "uploadDate": "2024-03-31T08:00:00+08:00",
  "duration": "PT1M54S",
  "contentUrl": "https://example.com/video.mp4",
  "embedUrl": "https://example.com/embed/123"
}
Use this for: Adding basic video metadata to help Google understand and display your videos in search results.

json
{
  "@context": "https://schema.org",
  "@type": "VideoObject",
  "name": "Video title",
  "description": "Video description",
  "thumbnailUrl": [
    "https://example.com/photos/1x1/photo.jpg",
    "https://example.com/photos/4x3/photo.jpg",
    "https://example.com/photos/16x9/photo.jpg"
  ],
  "uploadDate": "2024-03-31T08:00:00+08:00",
  "duration": "PT1M54S",
  "contentUrl": "https://example.com/video.mp4",
  "embedUrl": "https://example.com/embed/123"
}
用途:添加基础视频元数据,帮助Google理解并在搜索结果中展示你的视频。

Example 2: LIVE Badge with BroadcastEvent

示例2:带BroadcastEvent的LIVE标识

json
{
  "@context": "https://schema.org",
  "@type": "VideoObject",
  "name": "Livestream title",
  "uploadDate": "2024-10-27T14:00:00+00:00",
  "publication": {
    "@type": "BroadcastEvent",
    "isLiveBroadcast": true,
    "startDate": "2024-10-27T14:00:00+00:00",
    "endDate": "2024-10-27T14:37:14+00:00"
  }
}
Use this for: Enabling the LIVE badge on livestream videos in Google Search results.

json
{
  "@context": "https://schema.org",
  "@type": "VideoObject",
  "name": "Livestream title",
  "uploadDate": "2024-10-27T14:00:00+00:00",
  "publication": {
    "@type": "BroadcastEvent",
    "isLiveBroadcast": true,
    "startDate": "2024-10-27T14:00:00+00:00",
    "endDate": "2024-10-27T14:37:14+00:00"
  }
}
用途:在Google Search结果中为直播视频启用LIVE标识。

Example 3: Video Key Moments with Clip

示例3:带Clip的视频关键时间点

json
{
  "@context": "https://schema.org",
  "@type": "VideoObject",
  "name": "Cat video",
  "hasPart": [
    {
      "@type": "Clip",
      "name": "Cat jumps",
      "startOffset": 30,
      "endOffset": 45,
      "url": "https://example.com/video?t=30"
    },
    {
      "@type": "Clip",
      "name": "Cat misses the fence",
      "startOffset": 111,
      "endOffset": 150,
      "url": "https://example.com/video?t=111"
    }
  ]
}
Use this for: Manually specifying important timestamps/chapters in your video for the key moments feature.

json
{
  "@context": "https://schema.org",
  "@type": "VideoObject",
  "name": "Cat video",
  "hasPart": [
    {
      "@type": "Clip",
      "name": "Cat jumps",
      "startOffset": 30,
      "endOffset": 45,
      "url": "https://example.com/video?t=30"
    },
    {
      "@type": "Clip",
      "name": "Cat misses the fence",
      "startOffset": 111,
      "endOffset": 150,
      "url": "https://example.com/video?t=111"
    }
  ]
}
用途:手动指定视频中的重要时间点/章节,以启用关键时间点功能。

Example 4: Good Anchor Text Practices

示例4:优质锚文本实践

html
<!-- Bad: Too generic -->
<a href="https://example.com">Click here</a> to learn more.

<!-- Better: Descriptive and contextual -->
For a full list of cheese available for purchase, see the
<a href="https://example.com">list of cheese types</a>.

<!-- Bad: Too many adjacent links -->
I've written about cheese
<a href="/page1">so</a>
<a href="/page2">many</a>
<a href="/page3">times</a>.

<!-- Better: Spaced out with context -->
I've written about cheese so many times this year:
the <a href="/blue-cheese">controversy over blue cheese</a>,
the <a href="/oldest-brie">world's oldest brie</a>, and
<a href="/boy-and-cheese">A Boy and His Cheese</a>.
Use this for: Creating effective internal and external links that help both users and Google understand your content.

html
<!-- 不佳:过于通用 -->
<a href="https://example.com">Click here</a> to learn more.

<!-- 更佳:描述性强且贴合语境 -->
For a full list of cheese available for purchase, see the
<a href="https://example.com">list of cheese types</a>.

<!-- 不佳:相邻链接过多 -->
I've written about cheese
<a href="/page1">so</a>
<a href="/page2">many</a>
<a href="/page3">times</a>.

<!-- 更佳:分散排列并附带语境 -->
I've written about cheese so many times this year:
the <a href="/blue-cheese">controversy over blue cheese</a>,
the <a href="/oldest-brie">world's oldest brie</a>, and
<a href="/boy-and-cheese">A Boy and His Cheese</a>.
用途:创建对用户和Google都友好的有效内部与外部链接,帮助理解内容。

Example 5: Crawlable Links

示例5:可抓取的链接

html
<!-- Recommended: Google can crawl these -->
<a href="https://example.com">Link text</a>
<a href="/products/category/shoes">Link text</a>
<a href="./products/category/shoes">Link text</a>

<!-- Not recommended: May not be crawled -->
<a routerLink="products/category">Link text</a>
<a onclick="goto('https://example.com')">Link text</a>
<span href="https://example.com">Link text</span>
Use this for: Ensuring your links are discoverable and crawlable by Googlebot.

html
<!-- 推荐:Google可抓取这些链接 -->
<a href="https://example.com">Link text</a>
<a href="/products/category/shoes">Link text</a>
<a href="./products/category/shoes">Link text</a>

<!-- 不推荐:可能无法被抓取 -->
<a routerLink="products/category">Link text</a>
<a onclick="goto('https://example.com')">Link text</a>
<span href="https://example.com">Link text</span>
用途:确保你的链接可被Googlebot发现并抓取。

Example 6: Mobile and Desktop hreflang for Separate URLs

示例6:独立URL的移动端与桌面端hreflang配置

html
<!-- Mobile version (https://m.example.com/) -->
<link rel="canonical" href="https://example.com/">
<link rel="alternate" hreflang="es" href="https://m.example.com/es/">
<link rel="alternate" hreflang="fr" href="https://m.example.com/fr/">

<!-- Desktop version (https://example.com/) -->
<link rel="canonical" href="https://example.com/">
<link rel="alternate" media="only screen and (max-width: 640px)"
      href="https://m.example.com/">
<link rel="alternate" hreflang="es" href="https://example.com/es/">
<link rel="alternate" hreflang="fr" href="https://example.com/fr/">
Use this for: Properly configuring separate mobile URLs (m-dot sites) with internationalization support.

html
<!-- 移动端版本(https://m.example.com/) -->
<link rel="canonical" href="https://example.com/">
<link rel="alternate" hreflang="es" href="https://m.example.com/es/">
<link rel="alternate" hreflang="fr" href="https://m.example.com/fr/">

<!-- 桌面端版本(https://example.com/) -->
<link rel="canonical" href="https://example.com/">
<link rel="alternate" media="only screen and (max-width: 640px)"
      href="https://m.example.com/">
<link rel="alternate" hreflang="es" href="https://example.com/es/">
<link rel="alternate" hreflang="fr" href="https://example.com/fr/">
用途:为独立移动端URL(m站)正确配置多语言支持。

Example 7: robots meta tags

示例7:robots元标签

html
<!-- Don't index this page -->
<meta name="robots" content="noindex">

<!-- Don't follow links on this page -->
<meta name="robots" content="nofollow">

<!-- Don't index and don't follow -->
<meta name="robots" content="noindex, nofollow">

<!-- Don't show snippet in search results -->
<meta name="robots" content="nosnippet">
Use this for: Controlling how Google crawls and indexes specific pages.

html
<!-- 不索引此页面 -->
<meta name="robots" content="noindex">

<!-- 不跟踪此页面上的链接 -->
<meta name="robots" content="nofollow">

<!-- 不索引且不跟踪链接 -->
<meta name="robots" content="noindex, nofollow">

<!-- 不在搜索结果中显示摘要 -->
<meta name="robots" content="nosnippet">
用途:控制Google如何抓取和索引特定页面。

Example 8: InteractionStatistic for Video Views

示例8:视频观看量的InteractionStatistic配置

json
{
  "@context": "https://schema.org",
  "@type": "VideoObject",
  "name": "Video title",
  "interactionStatistic": {
    "@type": "InteractionCounter",
    "interactionType": { "@type": "WatchAction" },
    "userInteractionCount": 12345
  }
}
Use this for: Displaying the number of views/watches for your video content.

json
{
  "@context": "https://schema.org",
  "@type": "VideoObject",
  "name": "Video title",
  "interactionStatistic": {
    "@type": "InteractionCounter",
    "interactionType": { "@type": "WatchAction" },
    "userInteractionCount": 12345
  }
}
用途:展示视频内容的观看次数。

Example 9: External Links with Attribution

示例9:带归因的外部链接

html
<!-- Citing sources with proper attribution -->
<p>
According to a recent study from Swiss researchers,
Emmental cheese wheels exposed to music had a milder flavor,
with the full findings available in
<a href="https://example.com/cheese-study">
  Cheese in Surround Sound—a culinary art experiment
</a>.
</p>

<!-- Use nofollow when you don't trust the source -->
<a href="https://untrusted-site.com" rel="nofollow">
  Untrusted content
</a>

<!-- Sponsored links must be marked -->
<a href="https://partner-site.com" rel="sponsored">
  Partner content
</a>
Use this for: Properly linking to external sources while maintaining SEO best practices.

html
<!-- 正确引用来源并添加归因 -->
<p>
According to a recent study from Swiss researchers,
Emmental cheese wheels exposed to music had a milder flavor,
with the full findings available in
<a href="https://example.com/cheese-study">
  Cheese in Surround Sound—a culinary art experiment
</a>.
</p>

<!-- 不信任来源时使用nofollow -->
<a href="https://untrusted-site.com" rel="nofollow">
  Untrusted content
</a>

<!-- 赞助链接必须标记 -->
<a href="https://partner-site.com" rel="sponsored">
  Partner content
</a>
用途:在遵循SEO最佳实践的前提下,正确链接到外部来源。

Example 10: Mobile-First Indexing Checklist

示例10:移动优先索引检查清单

html
<!-- Ensure same robots meta tags on mobile and desktop -->
<meta name="robots" content="index, follow">

<!-- Use same structured data on both versions -->
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Example Corp"
}
</script>

<!-- Ensure images have proper alt text on mobile -->
<img src="product.jpg" alt="Blue ceramic vase, 12 inches tall">

<!-- Use same title and meta description -->
<title>Product Name - Category | Site Name</title>
<meta name="description" content="High-quality product description">
Use this for: Ensuring your mobile site is properly optimized for Google's mobile-first indexing.
html
<!-- 确保移动端与桌面端使用相同的robots元标签 -->
<meta name="robots" content="index, follow">

<!-- 两个版本使用相同的结构化数据 -->
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "Example Corp"
}
</script>

<!-- 确保移动端图片带有合适的替代文本 -->
<img src="product.jpg" alt="Blue ceramic vase, 12 inches tall">

<!-- 使用相同的标题和元描述 -->
<title>Product Name - Category | Site Name</title>
<meta name="description" content="High-quality product description">
用途:确保你的移动端网站针对Google的移动优先索引进行了适当优化。

Reference Files

参考文件

This skill includes comprehensive documentation organized into the following categories:
本技能包含按以下类别组织的全面文档:

apis.md (1 page)

apis.md(1页)

Content: Getting started with Google Search Console, monitoring tools, and APIs.
Key Topics:
  • Setting up Search Console
  • Reports for SEO specialists and marketers
  • Reports for web developers
  • Managing site performance
When to use: Setting up monitoring, accessing Search Console features, understanding available reports.

内容:Google Search Console入门、监控工具及API相关内容。
核心主题
  • 设置Search Console
  • 面向SEO专员和营销人员的报告
  • 面向网页开发者的报告
  • 管理站点性能
使用场景:设置监控、访问Search Console功能、了解可用报告。

appearance.md (58 pages)

appearance.md(58页)

Content: Visual elements and rich results in Google Search.
Key Topics:
  • Visual Elements Gallery (text results, rich results, images, videos)
  • Attribution elements (favicon, site name, breadcrumbs)
  • Structured data features
  • Search result optimization
  • Title links and snippets
When to use: Optimizing how your content appears in search results, implementing rich results, understanding search UI elements.

内容:Google Search中的视觉元素与富结果。
核心主题
  • 视觉元素库(文本结果、富结果、图片、视频)
  • 归因元素(站点图标、站点名称、面包屑)
  • 结构化数据功能
  • 搜索结果优化
  • 标题链接与摘要
使用场景:优化内容在搜索结果中的展示效果、实施富结果、了解搜索UI元素。

crawling.md

crawling.md

Content: How Google discovers, crawls, and accesses web content.
Key Topics:
  • Googlebot behavior and user agents
  • Crawl budget and optimization
  • robots.txt configuration
  • Managing crawl rate
  • Handling special file types
When to use: Debugging crawling issues, optimizing crawl efficiency, controlling what Google crawls.

内容:Google如何发现、抓取和访问网页内容。
核心主题
  • Googlebot行为与用户代理
  • 抓取预算与优化
  • robots.txt配置
  • 管理抓取频率
  • 处理特殊文件类型
使用场景:排查抓取问题、优化抓取效率、控制Google的抓取范围。

fundamentals.md

fundamentals.md

Content: Core concepts and essential SEO knowledge.
Key Topics:
  • How Google Search works (crawling, indexing, serving)
  • SEO starter guide
  • Search Essentials
  • Creating helpful content
  • Site organization and URL structure
When to use: Learning SEO basics, understanding Google Search fundamentals, starting a new project.

内容:核心概念与必备SEO知识。
核心主题
  • Google Search的工作原理(抓取→索引→展示)
  • SEO入门指南
  • 搜索基本要求
  • 创建有用的内容
  • 站点组织与URL结构
使用场景:学习SEO基础知识、了解Google Search核心原理、启动新项目。

guides.md

guides.md

Content: Detailed how-to guides for specific SEO tasks.
Key Topics:
  • Link best practices
  • Mobile-first indexing
  • Internationalization
  • Site migrations
  • Duplicate content management
  • JavaScript SEO
When to use: Implementing specific SEO features, solving technical SEO challenges, following best practices.

内容:针对特定SEO任务的详细操作指南。
核心主题
  • 链接最佳实践
  • 移动优先索引
  • 国际化配置
  • 站点迁移
  • 重复内容管理
  • JavaScript SEO
使用场景:实施特定SEO功能、解决技术SEO难题、遵循最佳实践。

indexing.md

indexing.md

Content: How Google indexes content and troubleshooting indexing issues.
Key Topics:
  • Canonical URLs
  • Meta tags (robots, noindex, etc.)
  • Sitemaps
  • Status codes and redirects
  • Removing content from Google
When to use: Fixing indexing problems, managing duplicate content, controlling what gets indexed.

内容:Google如何索引内容及排查索引问题。
核心主题
  • 规范URL
  • 元标签(robots、noindex等)
  • 站点地图
  • 状态码与重定向
  • 从Google中移除内容
使用场景:修复索引问题、管理重复内容、控制索引范围。

other.md

other.md

Content: Additional topics and specialized information.
Key Topics:
  • Google Search policies
  • Spam prevention
  • Algorithm updates
  • Advanced features
When to use: Understanding policies, avoiding penalties, staying current with Google changes.

内容:其他主题与专业信息。
核心主题
  • Google Search政策
  • 垃圾内容预防
  • 算法更新
  • 高级功能
使用场景:了解政策、避免处罚、掌握Google的最新变化。

specialty.md

specialty.md

Content: Structured data and specialized search features.
Key Topics:
  • VideoObject structured data
  • BroadcastEvent (LIVE badge)
  • Clip and SeekToAction (key moments)
  • Other schema.org types
  • Rich result guidelines
  • Troubleshooting structured data
When to use: Implementing video features, adding structured data, enabling rich results, debugging markup errors.
内容:结构化数据与专业搜索功能。
核心主题
  • VideoObject结构化数据
  • BroadcastEvent(LIVE标识)
  • Clip与SeekToAction(关键时间点)
  • 其他schema.org类型
  • 富结果指南
  • 结构化数据排查
使用场景:实施视频功能、添加结构化数据、启用富结果、排查标记错误。

Working with This Skill

如何使用本技能

For Beginners

面向初学者

Start with fundamentals.md to understand:
  • How Google Search works (crawling → indexing → serving)
  • Basic SEO principles
  • Search Essentials requirements
Then review guides.md for practical implementation:
  • Creating good anchor text
  • Mobile optimization
  • Basic structured data
Pro tip: Use the Quick Reference examples above as templates for common tasks.

首先阅读fundamentals.md,了解:
  • Google Search的工作原理(抓取→索引→展示)
  • 基础SEO原则
  • 搜索基本要求
然后查看guides.md获取实践指导:
  • 创建优质锚文本
  • 移动端优化
  • 基础结构化数据
小贴士:使用上述快速参考示例作为常见任务的模板。

For SEO Specialists & Marketers

面向SEO专员与营销人员

Focus on these areas:
  1. appearance.md: Optimize how your content displays in search results
  2. guides.md: Implement link strategies, mobile optimization, internationalization
  3. indexing.md: Manage canonical URLs, sitemaps, and content removal
  4. apis.md: Monitor performance with Search Console
Common workflows:
  • Site audit: Check crawling.md + indexing.md
  • Rich results: Use specialty.md for structured data
  • International expansion: Follow guides.md hreflang patterns
  • Link building: Apply guides.md anchor text best practices

重点关注以下领域:
  1. appearance.md:优化内容在搜索结果中的展示效果
  2. guides.md:实施链接策略、移动端优化、国际化配置
  3. indexing.md:管理规范URL、站点地图与内容移除
  4. apis.md:使用Search Console监控性能
常见工作流
  • 站点审计:查看crawling.md + indexing.md
  • 富结果:使用specialty.md中的结构化数据
  • 国际扩张:遵循guides.md中的hreflang配置模式
  • 链接建设:应用guides.md中的链接最佳实践

For Web Developers

面向网页开发者

Priority reading:
  1. fundamentals.md: Understand the technical foundation
  2. crawling.md: Optimize Googlebot access and crawl efficiency
  3. indexing.md: Implement proper meta tags and redirects
  4. specialty.md: Add structured data for rich features
Common tasks:
  • JavaScript apps: See guides.md JavaScript SEO section
  • Video content: Use specialty.md VideoObject examples
  • Site migration: Follow guides.md migration patterns
  • Debugging: Use indexing.md for troubleshooting

优先阅读:
  1. fundamentals.md:了解技术基础
  2. crawling.md:优化Googlebot的访问与抓取效率
  3. indexing.md:实施正确的元标签与重定向
  4. specialty.md:添加结构化数据以实现富功能
常见任务
  • JavaScript应用:查看guides.md中的JavaScript SEO章节
  • 视频内容:使用specialty.md中的VideoObject示例
  • 站点迁移:遵循guides.md中的迁移模式
  • 问题排查:使用indexing.md进行故障排除

For Advanced Users

面向高级用户

Explore specialized topics:
  • Structured data mastery: Deep dive into specialty.md
  • Crawl optimization: Advanced techniques in crawling.md
  • Policy compliance: Review other.md spam policies
  • International SEO: Complex hreflang setups in guides.md
Advanced patterns:
  • Multi-region sites with separate mobile URLs
  • Dynamic structured data with JavaScript
  • Large-scale site migrations
  • Custom crawl budget management
探索专业主题:
  • 结构化数据精通:深入研究specialty.md
  • 抓取优化:crawling.md中的高级技巧
  • 政策合规:查看other.md中的垃圾内容政策
  • 国际SEO:guides.md中的复杂hreflang配置
高级模式
  • 带有独立移动端URL的多区域站点
  • 基于JavaScript的动态结构化数据
  • 大规模站点迁移
  • 自定义抓取预算管理

Common Pitfalls to Avoid

需避免的常见陷阱

Spam Policy Violations

违反垃圾内容政策

  • ❌ Keyword stuffing in content or meta tags
  • ❌ Hidden text or links
  • ❌ Buying/selling links for ranking
  • ❌ Cloaking (showing different content to Google vs users)
  • ✅ See other.md for complete spam policies
  • ❌ 在内容或元标签中堆砌关键词
  • ❌ 隐藏文本或链接
  • ❌ 买卖链接以提升排名
  • ❌ 伪装(向Google与用户展示不同内容)
  • ✅ 查看other.md获取完整的垃圾内容政策

Mobile-First Indexing Issues

移动优先索引问题

  • ❌ Different content on mobile vs desktop
  • ❌ Blocking resources on mobile
  • ❌ Missing structured data on mobile
  • ✅ See guides.md mobile-first section
  • ❌ 移动端与桌面端内容不同
  • ❌ 阻止移动端资源加载
  • ❌ 移动端缺少结构化数据
  • ✅ 查看guides.md中的移动优先章节

Structured Data Mistakes

结构化数据错误

  • ❌ Using unsupported formats or properties
  • ❌ Missing required fields
  • ❌ Different URLs in mobile vs desktop markup
  • ✅ Validate with Rich Results Test tool
  • ❌ 使用不支持的格式或属性
  • ❌ 缺少必填字段
  • ❌ 移动端与桌面端标记中的URL不同
  • ✅ 使用富结果测试工具验证

Link Problems

链接问题

  • ❌ Generic anchor text ("click here")
  • ❌ Non-crawlable JavaScript links
  • ❌ Too many links chained together
  • ✅ See guides.md link best practices
  • ❌ 使用通用锚文本(如“click here”)
  • ❌ 使用无法抓取的JavaScript链接
  • ❌ 过多连续链接
  • ✅ 查看guides.md中的链接最佳实践

Tips & Best Practices

技巧与最佳实践

SEO Fundamentals

SEO基础

  1. Create unique, descriptive titles and meta descriptions for each page
  2. Use meaningful heading structure (H1, H2, H3)
  3. Optimize images with descriptive alt text
  4. Ensure fast page load times (especially on mobile)
  5. Build a logical site structure with clear navigation
  1. 为每个页面创建独特且描述性的标题和元描述
  2. 使用有意义的标题层级(H1、H2、H3)
  3. 为图片添加描述性替代文本
  4. 确保页面加载速度快(尤其是移动端)
  5. 构建逻辑清晰的站点结构与导航

Technical SEO

技术SEO

  1. Submit and maintain an XML sitemap
  2. Use robots.txt appropriately (crawl control, not indexing control)
  3. Implement canonical tags for duplicate content
  4. Use HTTPS for security
  5. Ensure mobile-friendliness (responsive design recommended)
  1. 提交并维护XML站点地图
  2. 合理使用robots.txt(控制抓取,而非索引)
  3. 为重复内容实施规范标签
  4. 使用HTTPS保障安全
  5. 确保移动端友好性(推荐响应式设计)

Content Strategy

内容策略

  1. Focus on creating helpful, people-first content
  2. Match user intent with your content
  3. Keep content fresh and up-to-date
  4. Use natural language, avoid keyword stuffing
  5. Build internal links with descriptive anchor text
  1. 专注于创建有用、以用户为中心的内容
  2. 内容匹配用户意图
  3. 保持内容新鲜且及时更新
  4. 使用自然语言,避免关键词堆砌
  5. 使用描述性锚文本构建内部链接

Monitoring & Maintenance

监控与维护

  1. Set up Search Console and verify ownership
  2. Monitor crawl errors and indexing issues regularly
  3. Track search performance metrics
  4. Test structured data with validation tools
  5. Stay informed about Google Search updates
  1. 设置并验证Search Console所有权
  2. 定期监控抓取错误与索引问题
  3. 跟踪搜索表现指标
  4. 使用验证工具测试结构化数据
  5. 及时了解Google Search的更新

Resources

资源

Official Tools

官方工具

  • Google Search Console: Monitor and optimize search presence
  • Rich Results Test: Validate structured data markup
  • Mobile-Friendly Test: Check mobile optimization
  • Page Speed Insights: Analyze performance
  • Google Search Console:监控并优化搜索曝光
  • Rich Results Test:验证结构化数据标记
  • Mobile-Friendly Test:检查移动端优化情况
  • Page Speed Insights:分析性能

Documentation Links

文档链接

  • Most documentation preserves links to official Google resources
  • Use reference files for detailed explanations and examples
  • Code examples include proper syntax highlighting
  • 大多数文档保留了指向谷歌官方资源的链接
  • 使用参考文件获取详细解释与示例
  • 代码示例包含正确的语法高亮

Notes

说明

  • This skill was automatically generated from official Google Search documentation
  • Reference files preserve structure and examples from source docs
  • Quick reference patterns are extracted from real-world usage examples
  • All examples follow Google's official guidelines and best practices
  • 本技能由谷歌官方Search文档自动生成
  • 参考文件保留了源文档的结构与示例
  • 快速参考模式提取自实际使用案例
  • 所有示例均遵循谷歌官方指南与最佳实践

Updating

更新

To refresh this skill with updated documentation:
  1. Re-run the documentation scraper with the same configuration
  2. The skill will be rebuilt with the latest official information
  3. Check for new features, deprecated patterns, or policy changes
如需使用更新后的文档刷新本技能:
  1. 使用相同配置重新运行文档抓取工具
  2. 技能将使用最新官方信息重建
  3. 检查新功能、已弃用模式或政策变更