[{"data":1,"prerenderedAt":5971},["ShallowReactive",2],{"article-/topics/seo/keyword-research-guide":3,"related-seo":685,"content-query-Ot1d5Z023A":5430},{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":8,"description":9,"date":10,"topic":5,"author":11,"tags":12,"image":17,"featured":18,"readingTime":19,"body":20,"_type":679,"_id":680,"_source":681,"_file":682,"_stem":683,"_extension":684},"/topics/seo/keyword-research-guide","seo",false,"","关键词研究与选择方法完整指南","系统讲解如何进行关键词研究，包括关键词分类、搜索意图分析、工具使用、竞争度评估和选择策略。学会用数据驱动的方法找到目标关键词，制定内容策略。","2025-12-09","HTMLPAGE 团队",[13,14,15,16],"关键词研究","SEO 策略","搜索意图","内容规划","/images/topics/keyword-research.jpg",true,9,{"type":21,"children":22,"toc":646},"root",[23,30,35,41,46,56,61,67,78,83,91,96,102,262,268,376,382,391,397,406,411,416,424,429,437,442,451,456,461,469,475,483,489,495,503,508,517,522,530,535,540,595,600],{"type":24,"tag":25,"props":26,"children":27},"element","h2",{"id":8},[28],{"type":29,"value":8},"text",{"type":24,"tag":25,"props":31,"children":33},{"id":32},"概述",[34],{"type":29,"value":32},{"type":24,"tag":36,"props":37,"children":38},"p",{},[39],{"type":29,"value":40},"关键词研究是 SEO 工作的基础。选择正确的关键词意味着优化努力的方向正确，能够吸引真正想要的流量。不好的关键词选择会导致优化工作事倍功半。",{"type":24,"tag":25,"props":42,"children":44},{"id":43},"关键词的基本分类",[45],{"type":29,"value":43},{"type":24,"tag":47,"props":48,"children":50},"pre",{"code":49},"所有关键词\n  ├─ 按搜索量\n  │  ├─ 头部词（Head Keywords）\n  │  │  ├─ 搜索量：> 1000/月\n  │  │  ├─ 竞争度：极高\n  │  │  ├─ 例：Python 教程\n  │  │  └─ 适合：大品牌网站\n  │  │\n  │  ├─ 躯干词（Body Keywords）\n  │  │  ├─ 搜索量：100-1000/月\n  │  │  ├─ 竞争度：中等\n  │  │  ├─ 例：Python 异步编程教程\n  │  │  └─ 适合：成长阶段网站\n  │  │\n  │  └─ 长尾词（Long Tail Keywords）\n  │     ├─ 搜索量：\u003C 100/月\n  │     ├─ 竞争度：低\n  │     ├─ 例：Python asyncio 实战应用 2025\n  │     └─ 适合：新网站和利基市场\n  │\n  ├─ 按搜索意图\n  │  ├─ 信息型（Informational）：用户想了解信息\n  │  ├─ 导航型（Navigational）：用户想找特定网站\n  │  └─ 转化型（Commercial/Transactional）：用户想购买或行动\n  │\n  └─ 按产品生命周期\n     ├─ 品牌词：包含品牌名称\n     ├─ 竞争词：竞争对手名称\n     ├─ 通用词：行业通用术语\n     └─ 产品词：特定产品相关\n",[51],{"type":24,"tag":52,"props":53,"children":54},"code",{"__ignoreMap":7},[55],{"type":29,"value":49},{"type":24,"tag":25,"props":57,"children":59},{"id":58},"关键词的搜索意图分析",[60],{"type":29,"value":58},{"type":24,"tag":62,"props":63,"children":65},"h3",{"id":64},"搜索意图的四类",[66],{"type":29,"value":64},{"type":24,"tag":47,"props":68,"children":73},{"code":69,"language":70,"meta":7,"className":71},"// 关键词分类系统\nconst keywordAnalysis = {\n  informational: {\n    // 用户想学习/了解\n    examples: [\n      'React 生命周期如何工作',\n      'Python asyncio 是什么',\n      'SEO 最佳实践 2025'\n    ],\n    userStage: '意识阶段 (Awareness)',\n    contentType: '指南、教程、对比文章',\n    ctr: '低（3-5%）',\n    conversionRate: '低'\n  },\n  \n  navigational: {\n    // 用户想找特定网站\n    examples: [\n      'React 官方文档',\n      'Stack Overflow',\n      'GitHub Next.js'\n    ],\n    userStage: '已知道品牌',\n    contentType: '品牌相关内容',\n    ctr: '高（10-15%）',\n    conversionRate: '中等'\n  },\n  \n  commercial: {\n    // 用户想了解购买选项\n    examples: [\n      'React vs Vue vs Angular',\n      '最好的 Node.js 框架',\n      'TypeScript 学习成本'\n    ],\n    userStage: '决策阶段 (Consideration)',\n    contentType: '对比文章、案例研究、工具评测',\n    ctr: '中等（5-8%）',\n    conversionRate: '高'\n  },\n  \n  transactional: {\n    // 用户想采取行动（购买、下载等）\n    examples: [\n      '购买 Node.js 培训课程',\n      '下载 React Native 模板',\n      'WebStorm 价格'\n    ],\n    userStage: '决策阶段 (Decision)',\n    contentType: '产品页面、定价页、评价',\n    ctr: '高（8-12%）',\n    conversionRate: '最高'\n  }\n}\n","javascript",[72],"language-javascript",[74],{"type":24,"tag":52,"props":75,"children":76},{"__ignoreMap":7},[77],{"type":29,"value":69},{"type":24,"tag":62,"props":79,"children":81},{"id":80},"如何判断搜索意图",[82],{"type":29,"value":80},{"type":24,"tag":47,"props":84,"children":86},{"code":85},"关键词分析流程：\n\n搜索关键词\n  ↓\n查看前 10 个排名结果\n  ↓\n观察页面类型\n  ├─ 产品页、定价页 → 转化型\n  ├─ 对比文章、工具测评 → 商业型\n  ├─ 教程、指南、定义 → 信息型\n  └─ 官方网站、品牌页 → 导航型\n  ↓\n分析排名网站的特点\n  ├─ 权重\n  ├─ 内容长度\n  ├─ 发布时间（新鲜度）\n  └─ 内容类型\n  ↓\n确定竞争难度\n  ├─ 全是大网站 → 难\n  ├─ 混合 → 中等\n  └─ 包括小网站 → 容易\n  ↓\n确定是否值得优化\n",[87],{"type":24,"tag":52,"props":88,"children":89},{"__ignoreMap":7},[90],{"type":29,"value":85},{"type":24,"tag":25,"props":92,"children":94},{"id":93},"关键词研究工具和方法",[95],{"type":29,"value":93},{"type":24,"tag":62,"props":97,"children":99},{"id":98},"_1-免费工具",[100],{"type":29,"value":101},"1. 免费工具",{"type":24,"tag":103,"props":104,"children":105},"table",{},[106,130],{"type":24,"tag":107,"props":108,"children":109},"thead",{},[110],{"type":24,"tag":111,"props":112,"children":113},"tr",{},[114,120,125],{"type":24,"tag":115,"props":116,"children":117},"th",{},[118],{"type":29,"value":119},"工具",{"type":24,"tag":115,"props":121,"children":122},{},[123],{"type":29,"value":124},"功能",{"type":24,"tag":115,"props":126,"children":127},{},[128],{"type":29,"value":129},"特点",{"type":24,"tag":131,"props":132,"children":133},"tbody",{},[134,157,178,199,220,241],{"type":24,"tag":111,"props":135,"children":136},{},[137,147,152],{"type":24,"tag":138,"props":139,"children":140},"td",{},[141],{"type":24,"tag":142,"props":143,"children":144},"strong",{},[145],{"type":29,"value":146},"Google Keyword Planner",{"type":24,"tag":138,"props":148,"children":149},{},[150],{"type":29,"value":151},"搜索量、CPC、竞争度",{"type":24,"tag":138,"props":153,"children":154},{},[155],{"type":29,"value":156},"官方工具，但数据粗略",{"type":24,"tag":111,"props":158,"children":159},{},[160,168,173],{"type":24,"tag":138,"props":161,"children":162},{},[163],{"type":24,"tag":142,"props":164,"children":165},{},[166],{"type":29,"value":167},"Google Trends",{"type":24,"tag":138,"props":169,"children":170},{},[171],{"type":29,"value":172},"搜索趋势、地区数据",{"type":24,"tag":138,"props":174,"children":175},{},[176],{"type":29,"value":177},"看趋势很好",{"type":24,"tag":111,"props":179,"children":180},{},[181,189,194],{"type":24,"tag":138,"props":182,"children":183},{},[184],{"type":24,"tag":142,"props":185,"children":186},{},[187],{"type":29,"value":188},"Answer the Public",{"type":24,"tag":138,"props":190,"children":191},{},[192],{"type":29,"value":193},"用户常问问题",{"type":24,"tag":138,"props":195,"children":196},{},[197],{"type":29,"value":198},"发现长尾词很有用",{"type":24,"tag":111,"props":200,"children":201},{},[202,210,215],{"type":24,"tag":138,"props":203,"children":204},{},[205],{"type":24,"tag":142,"props":206,"children":207},{},[208],{"type":29,"value":209},"Ubersuggest",{"type":24,"tag":138,"props":211,"children":212},{},[213],{"type":29,"value":214},"关键词、排名、反链",{"type":24,"tag":138,"props":216,"children":217},{},[218],{"type":29,"value":219},"免费版有限制",{"type":24,"tag":111,"props":221,"children":222},{},[223,231,236],{"type":24,"tag":138,"props":224,"children":225},{},[226],{"type":24,"tag":142,"props":227,"children":228},{},[229],{"type":29,"value":230},"Google Search Console",{"type":24,"tag":138,"props":232,"children":233},{},[234],{"type":29,"value":235},"排名词、点击率",{"type":24,"tag":138,"props":237,"children":238},{},[239],{"type":29,"value":240},"自己网站的数据",{"type":24,"tag":111,"props":242,"children":243},{},[244,252,257],{"type":24,"tag":138,"props":245,"children":246},{},[247],{"type":24,"tag":142,"props":248,"children":249},{},[250],{"type":29,"value":251},"Google Autocomplete",{"type":24,"tag":138,"props":253,"children":254},{},[255],{"type":29,"value":256},"搜索建议",{"type":24,"tag":138,"props":258,"children":259},{},[260],{"type":29,"value":261},"简单但有效",{"type":24,"tag":62,"props":263,"children":265},{"id":264},"_2-付费工具",[266],{"type":29,"value":267},"2. 付费工具",{"type":24,"tag":103,"props":269,"children":270},{},[271,291],{"type":24,"tag":107,"props":272,"children":273},{},[274],{"type":24,"tag":111,"props":275,"children":276},{},[277,281,286],{"type":24,"tag":115,"props":278,"children":279},{},[280],{"type":29,"value":119},{"type":24,"tag":115,"props":282,"children":283},{},[284],{"type":29,"value":285},"月费",{"type":24,"tag":115,"props":287,"children":288},{},[289],{"type":29,"value":290},"优势",{"type":24,"tag":131,"props":292,"children":293},{},[294,315,335,355],{"type":24,"tag":111,"props":295,"children":296},{},[297,305,310],{"type":24,"tag":138,"props":298,"children":299},{},[300],{"type":24,"tag":142,"props":301,"children":302},{},[303],{"type":29,"value":304},"Ahrefs",{"type":24,"tag":138,"props":306,"children":307},{},[308],{"type":29,"value":309},"$99+",{"type":24,"tag":138,"props":311,"children":312},{},[313],{"type":29,"value":314},"最强大的反链分析",{"type":24,"tag":111,"props":316,"children":317},{},[318,326,330],{"type":24,"tag":138,"props":319,"children":320},{},[321],{"type":24,"tag":142,"props":322,"children":323},{},[324],{"type":29,"value":325},"SEMrush",{"type":24,"tag":138,"props":327,"children":328},{},[329],{"type":29,"value":309},{"type":24,"tag":138,"props":331,"children":332},{},[333],{"type":29,"value":334},"竞争对手分析全面",{"type":24,"tag":111,"props":336,"children":337},{},[338,346,350],{"type":24,"tag":138,"props":339,"children":340},{},[341],{"type":24,"tag":142,"props":342,"children":343},{},[344],{"type":29,"value":345},"Moz Pro",{"type":24,"tag":138,"props":347,"children":348},{},[349],{"type":29,"value":309},{"type":24,"tag":138,"props":351,"children":352},{},[353],{"type":29,"value":354},"关键词难度评分准",{"type":24,"tag":111,"props":356,"children":357},{},[358,366,371],{"type":24,"tag":138,"props":359,"children":360},{},[361],{"type":24,"tag":142,"props":362,"children":363},{},[364],{"type":29,"value":365},"Long Tail Pro",{"type":24,"tag":138,"props":367,"children":368},{},[369],{"type":29,"value":370},"$47+",{"type":24,"tag":138,"props":372,"children":373},{},[374],{"type":29,"value":375},"长尾词研究专业",{"type":24,"tag":62,"props":377,"children":379},{"id":378},"_3-使用-google-autocomplete-的技巧",[380],{"type":29,"value":381},"3. 使用 Google Autocomplete 的技巧",{"type":24,"tag":47,"props":383,"children":386},{"code":384,"language":70,"meta":7,"className":385},"// Google Autocomplete 提示技巧\nconst googleAutocompleteTricks = {\n  // 1. 逐字母建议\n  search: 'best node',\n  suggestions: [\n    'best node.js frameworks',\n    'best node.js tutorials',\n    'best node.js books'\n  ],\n  \n  // 2. 用问号触发更多建议\n  questionWords: ['what', 'how', 'where', 'when', 'why', 'which'],\n  example: 'what is [keyword]',\n  \n  // 3. 用数字触发\n  numberWords: ['best', 'top', '10', '2025'],\n  example: 'top 10 [keyword]',\n  \n  // 4. 比较型\n  comparison: '[keyword1] vs [keyword2]',\n  \n  // 5. 时间修饰符\n  timeModifiers: ['2025', '最新', 'beginner', 'advanced']\n}\n",[72],[387],{"type":24,"tag":52,"props":388,"children":389},{"__ignoreMap":7},[390],{"type":29,"value":384},{"type":24,"tag":62,"props":392,"children":394},{"id":393},"_4-竞争对手关键词研究工具脚本",[395],{"type":29,"value":396},"4. 竞争对手关键词研究工具脚本",{"type":24,"tag":47,"props":398,"children":401},{"code":399,"language":70,"meta":7,"className":400},"// 使用 Ahrefs API 的伪代码示例\nconst analyzeCompetitor = async (competitorURL) => {\n  // 1. 获取竞争对手排名的所有关键词\n  const competitorKeywords = await ahrefs.getOrganicKeywords(competitorURL)\n  \n  // 2. 获取自己排名的关键词\n  const ownKeywords = await ahrefs.getOrganicKeywords(myURL)\n  \n  // 3. 找到竞争对手有但自己没有的关键词\n  const missedKeywords = competitorKeywords.filter(\n    keyword => !ownKeywords.includes(keyword.name)\n  )\n  \n  // 4. 按搜索量降序排列\n  const opportunities = missedKeywords.sort(\n    (a, b) => b.searchVolume - a.searchVolume\n  )\n  \n  // 5. 筛选合适的机会（高搜索量，低难度）\n  const goodOpportunities = opportunities.filter(kw => \n    kw.searchVolume > 100 && \n    kw.difficulty \u003C 40 && \n    kw.competitionLevel \u003C 0.5\n  )\n  \n  return goodOpportunities\n}\n\n// 结果示例\n/*\n[\n  {\n    keyword: 'React performance optimization 2025',\n    searchVolume: 850,\n    difficulty: 28,\n    position: 15  // 竞争对手排名\n  },\n  {\n    keyword: 'Next.js deployment best practices',\n    searchVolume: 720,\n    difficulty: 32,\n    position: 12\n  }\n]\n*/\n",[72],[402],{"type":24,"tag":52,"props":403,"children":404},{"__ignoreMap":7},[405],{"type":29,"value":399},{"type":24,"tag":25,"props":407,"children":409},{"id":408},"关键词难度评估",[410],{"type":29,"value":408},{"type":24,"tag":62,"props":412,"children":414},{"id":413},"关键词难度计算方式",[415],{"type":29,"value":413},{"type":24,"tag":47,"props":417,"children":419},{"code":418},"关键词难度 (KD) = \n\n排名前 10 的网站平均权威性 × 0.4 +\n排名前 10 的反链质量 × 0.3 +\n搜索结果数量 × 0.2 +\n内容深度需求 × 0.1\n",[420],{"type":24,"tag":52,"props":421,"children":422},{"__ignoreMap":7},[423],{"type":29,"value":418},{"type":24,"tag":62,"props":425,"children":427},{"id":426},"难度评分参考",[428],{"type":29,"value":426},{"type":24,"tag":47,"props":430,"children":432},{"code":431},"难度等级     分数    竞争情况        新网站可行性\n超简单       \u003C 10    极少竞争        ✅ 非常容易\n简单         10-20   竞争少          ✅ 容易\n低中         20-35   中等竞争        ✅ 可行\n中等         35-50   较强竞争        🟡 可能需要时间\n中高         50-65   强竞争          🔴 困难\n高           65-80   激烈竞争        🔴 很困难\n极高         > 80    巨大竞争        🔴 几乎不可能\n",[433],{"type":24,"tag":52,"props":434,"children":435},{"__ignoreMap":7},[436],{"type":29,"value":431},{"type":24,"tag":62,"props":438,"children":440},{"id":439},"快速评估技巧",[441],{"type":29,"value":439},{"type":24,"tag":47,"props":443,"children":446},{"code":444,"language":70,"meta":7,"className":445},"// 快速估计关键词难度\nconst quickKDEstimate = (keyword) => {\n  let score = 0\n  \n  // 1. Google 结果数\n  const results = getGoogleResults(keyword)\n  if (results > 100000000) score += 30\n  else if (results > 10000000) score += 25\n  else if (results > 1000000) score += 20\n  else if (results > 100000) score += 15\n  else score += 10\n  \n  // 2. 前三个结果都是大网站吗？\n  const topThree = getTopThreeResults(keyword)\n  const allBig = topThree.every(r => r.domain.authority > 70)\n  if (allBig) score += 25\n  else if (topThree.some(r => r.domain.authority > 70)) score += 15\n  else score += 5\n  \n  // 3. 看排名第一的内容长度和完整性\n  const topContent = topThree[0]\n  if (topContent.wordCount > 3000) score += 20\n  else if (topContent.wordCount > 2000) score += 15\n  else score += 10\n  \n  // 4. 看是否需要原创数据或案例\n  const needsOriginal = topContent.hasStudies || topContent.hasData\n  if (needsOriginal) score += 15\n  \n  return Math.min(100, score)\n}\n\n// 使用示例\nconst difficulty = quickKDEstimate('best React frameworks')\n// 返回 65 → 中高难度\n",[72],[447],{"type":24,"tag":52,"props":448,"children":449},{"__ignoreMap":7},[450],{"type":29,"value":444},{"type":24,"tag":25,"props":452,"children":454},{"id":453},"关键词选择策略",[455],{"type":29,"value":453},{"type":24,"tag":62,"props":457,"children":459},{"id":458},"新网站应该从什么开始",[460],{"type":29,"value":458},{"type":24,"tag":47,"props":462,"children":464},{"code":463},"第一阶段（第 1-2 个月）\n  ├─ 关键词类型：长尾词 + 问题词\n  ├─ 难度范围：KD \u003C 20\n  ├─ 搜索量：100-500/月\n  ├─ 特点：竞争小，容易排名\n  └─ 目标：建立权威性，积累反链\n\n第二阶段（第 3-6 个月）\n  ├─ 关键词类型：中长尾词\n  ├─ 难度范围：KD 20-40\n  ├─ 搜索量：500-2000/月\n  ├─ 特点：竞争中等，需要优质内容\n  └─ 目标：流量增长，建立排名\n\n第三阶段（第 6-12 个月）\n  ├─ 关键词类型：核心词、头部词\n  ├─ 难度范围：KD 40-60\n  ├─ 搜索量：2000+/月\n  ├─ 特点：竞争强，需要权威性\n  └─ 目标：主要流量来源\n\n第四阶段（12 个月+）\n  ├─ 关键词类型：竞争词、品牌词\n  ├─ 难度范围：KD 60+\n  ├─ 搜索量：5000+/月\n  ├─ 特点：竞争激烈，需要品牌力\n  └─ 目标：成为领头网站\n",[465],{"type":24,"tag":52,"props":466,"children":467},{"__ignoreMap":7},[468],{"type":29,"value":463},{"type":24,"tag":62,"props":470,"children":472},{"id":471},"关键词选择的-5-步框架",[473],{"type":29,"value":474},"关键词选择的 5 步框架",{"type":24,"tag":47,"props":476,"children":478},{"code":477},"步骤 1: 定义目标受众\n  ↓\n确定受众的痛点和问题\n  │\n  ├─ 采访现有客户\n  ├─ 查看支持票据\n  ├─ 分析社交媒体讨论\n  └─ 研究竞争对手的评论\n  ↓\n\n步骤 2: 生成初始关键词列表\n  ↓\n使用多个来源\n  │\n  ├─ Google Autocomplete\n  ├─ 竞争对手网站\n  ├─ Answer the Public\n  ├─ 行业论坛和社区\n  └─ 专家访谈\n  ↓\n\n步骤 3: 分析和过滤\n  ↓\n应用筛选标准\n  │\n  ├─ 相关性：与业务相关吗？\n  ├─ 可行性：我能排名吗？\n  ├─ 价值：会带来流量和转化吗？\n  └─ 意图匹配：用户真实需求吗？\n  ↓\n\n步骤 4: 聚类和优先级排列\n  ↓\n按主题聚类关键词\n  │\n  ├─ 识别核心主题\n  ├─ 为每个主题创建内容支柱\n  └─ 计划相关长尾词内容\n  ↓\n\n步骤 5: 制定内容计划\n  ↓\n为每个关键词规划内容\n  │\n  ├─ 决定内容类型（博客/指南/工具等）\n  ├─ 确定发布优先级\n  ├─ 分配创建资源\n  └─ 设定排名目标时间\n",[479],{"type":24,"tag":52,"props":480,"children":481},{"__ignoreMap":7},[482],{"type":29,"value":477},{"type":24,"tag":25,"props":484,"children":486},{"id":485},"实战案例关键词研究示例",[487],{"type":29,"value":488},"实战案例：关键词研究示例",{"type":24,"tag":62,"props":490,"children":492},{"id":491},"案例新建-react-学习网站",[493],{"type":29,"value":494},"案例：新建 React 学习网站",{"type":24,"tag":47,"props":496,"children":498},{"code":497},"目标：创建学习 React 的资源网站\n目标受众：初学者到中级开发者\n时间：第一个月\n\n第 1 步：定义受众痛点\n  ├─ 不知道从哪开始学习\n  ├─ 理解 Hooks 困难\n  ├─ 状态管理复杂\n  ├─ 想找实战项目学习\n  └─ 想了解最新特性\n\n第 2 步：生成关键词\n  ├─ React 教程\n  ├─ React 初学者指南\n  ├─ React Hooks 讲解\n  ├─ React 状态管理\n  ├─ React 项目实战\n  └─ React 2025 新特性\n\n第 3 步：分析过滤（取 3 个最佳机会）\n  │\n  ├─ 关键词 1: \"React Hooks 详细讲解\"\n  │  ├─ 搜索量: 450/月\n  │  ├─ KD: 18\n  │  ├─ 意图: 信息型\n  │  └─ 决定: ✅ 创建内容\n  │\n  ├─ 关键词 2: \"React 初学者完整指南\"\n  │  ├─ 搜索量: 320/月\n  │  ├─ KD: 22\n  │  ├─ 意图: 信息型\n  │  └─ 决定: ✅ 创建内容\n  │\n  └─ 关键词 3: \"React Todo 应用教程\"\n      ├─ 搜索量: 280/月\n      ├─ KD: 15\n      ├─ 意图: 信息型\n      └─ 决定: ✅ 创建内容\n\n第 4 步：聚类和优先级\n  ├─ 主题 A: React 基础\n  │  ├─ \"React 初学者完整指南\" (第 1 周)\n  │  └─ \"React 核心概念讲解\" (第 2 周)\n  │\n  ├─ 主题 B: Hooks\n  │  ├─ \"React Hooks 详细讲解\" (第 1 周)\n  │  ├─ \"useState 最佳实践\" (第 2 周)\n  │  └─ \"useEffect 常见问题\" (第 3 周)\n  │\n  └─ 主题 C: 实战项目\n     └─ \"React Todo 应用教程\" (第 3-4 周)\n\n第 5 步：内容计划\n  Week 1:\n    - React 初学者完整指南 (3000 字)\n    - React Hooks 详细讲解 (2500 字)\n  \n  Week 2:\n    - useState 最佳实践 (2200 字)\n    - React 核心概念讲解 (2800 字)\n  \n  Week 3:\n    - useEffect 常见问题 (2400 字)\n    - React Todo 应用教程 (3000 字)\n  \n  Week 4:\n    - 反向链接建设\n    - 内部链接优化\n",[499],{"type":24,"tag":52,"props":500,"children":501},{"__ignoreMap":7},[502],{"type":29,"value":497},{"type":24,"tag":25,"props":504,"children":506},{"id":505},"常见关键词研究错误",[507],{"type":29,"value":505},{"type":24,"tag":47,"props":509,"children":512},{"code":510,"language":70,"meta":7,"className":511},"// ❌ 错误做法 vs ✅ 正确做法\n\n// 错误 1: 只看搜索量\n❌ 选择所有搜索量 > 1000 的词\n✅ 结合 KD、CPC、意图、预算考虑\n\n// 错误 2: 忽视搜索意图\n❌ \"最好的 Python 教程\" 和 \"Python 教程价格\" 一样对待\n✅ 根据意图创建匹配的内容类型\n\n// 错误 3: 不做竞争分析\n❌ 假设排名容易\n✅ 分析前 10 个排名网站的权威性\n\n// 错误 4: 过早优化困难词\n❌ 新网站就去优化 KD 80+ 的词\n✅ 从 KD \u003C 30 的词开始积累权威性\n\n// 错误 5: 忽视长尾词的价值\n❌ 只关注头部词\n✅ 长尾词虽然单个流量小，但总量可观\n",[72],[513],{"type":24,"tag":52,"props":514,"children":515},{"__ignoreMap":7},[516],{"type":29,"value":510},{"type":24,"tag":25,"props":518,"children":520},{"id":519},"关键词研究工作流程模板",[521],{"type":29,"value":519},{"type":24,"tag":47,"props":523,"children":525},{"code":524},"📋 月度关键词研究计划\n\n月份：\n目标流量增长：\n主要关键词集群：\n\n关键词研究清单：\n□ 分析竞争对手关键词 (1-2 天)\n□ 使用工具扩展关键词列表 (1 天)\n□ 进行意图分析 (1-2 天)\n□ 难度评估 (1 天)\n□ 创建优先级排序 (1 天)\n□ 规划内容日历 (1-2 天)\n□ 分配资源和时间线 (1 天)\n\n结果输出：\n- 新增关键词：___ 个\n- 优先级 A 词：___ 个\n- 优先级 B 词：___ 个\n- 预计增加流量：___ \n- 内容创建开始时间：___\n",[526],{"type":24,"tag":52,"props":527,"children":528},{"__ignoreMap":7},[529],{"type":29,"value":524},{"type":24,"tag":25,"props":531,"children":533},{"id":532},"总结",[534],{"type":29,"value":532},{"type":24,"tag":36,"props":536,"children":537},{},[538],{"type":29,"value":539},"关键词研究的核心原则：",{"type":24,"tag":541,"props":542,"children":543},"ol",{},[544,555,565,575,585],{"type":24,"tag":545,"props":546,"children":547},"li",{},[548,553],{"type":24,"tag":142,"props":549,"children":550},{},[551],{"type":29,"value":552},"数据驱动",{"type":29,"value":554},"：用工具和数据说话，不凭感觉",{"type":24,"tag":545,"props":556,"children":557},{},[558,563],{"type":24,"tag":142,"props":559,"children":560},{},[561],{"type":29,"value":562},"意图为王",{"type":29,"value":564},"：理解用户真实意图比关键词本身更重要",{"type":24,"tag":545,"props":566,"children":567},{},[568,573],{"type":24,"tag":142,"props":569,"children":570},{},[571],{"type":29,"value":572},"从易到难",{"type":29,"value":574},"：新网站应该从竞争小的词开始",{"type":24,"tag":545,"props":576,"children":577},{},[578,583],{"type":24,"tag":142,"props":579,"children":580},{},[581],{"type":29,"value":582},"聚类思维",{"type":29,"value":584},"：按主题聚类关键词，规划支柱内容",{"type":24,"tag":545,"props":586,"children":587},{},[588,593],{"type":24,"tag":142,"props":589,"children":590},{},[591],{"type":29,"value":592},"持续优化",{"type":29,"value":594},"：定期审查和调整关键词策略",{"type":24,"tag":25,"props":596,"children":598},{"id":597},"推荐阅读",[599],{"type":29,"value":597},{"type":24,"tag":601,"props":602,"children":603},"ul",{},[604,616,626,636],{"type":24,"tag":545,"props":605,"children":606},{},[607],{"type":24,"tag":608,"props":609,"children":613},"a",{"href":610,"rel":611},"https://ads.google.com/home/tools/keyword-planner/",[612],"nofollow",[614],{"type":29,"value":615},"Google 关键词规划师",{"type":24,"tag":545,"props":617,"children":618},{},[619],{"type":24,"tag":608,"props":620,"children":623},{"href":621,"rel":622},"https://ahrefs.com/keyword-generator",[612],[624],{"type":29,"value":625},"Ahrefs 关键词工具",{"type":24,"tag":545,"props":627,"children":628},{},[629],{"type":24,"tag":608,"props":630,"children":633},{"href":631,"rel":632},"https://www.semrush.com/keyword-research/",[612],[634],{"type":29,"value":635},"SEMrush 关键词分析",{"type":24,"tag":545,"props":637,"children":638},{},[639],{"type":24,"tag":608,"props":640,"children":643},{"href":641,"rel":642},"https://moz.com/keyword-research",[612],[644],{"type":29,"value":645},"Moz 关键词工具",{"title":7,"searchDepth":647,"depth":647,"links":648},3,[649,651,652,653,657,663,668,672,675,676,677,678],{"id":8,"depth":650,"text":8},2,{"id":32,"depth":650,"text":32},{"id":43,"depth":650,"text":43},{"id":58,"depth":650,"text":58,"children":654},[655,656],{"id":64,"depth":647,"text":64},{"id":80,"depth":647,"text":80},{"id":93,"depth":650,"text":93,"children":658},[659,660,661,662],{"id":98,"depth":647,"text":101},{"id":264,"depth":647,"text":267},{"id":378,"depth":647,"text":381},{"id":393,"depth":647,"text":396},{"id":408,"depth":650,"text":408,"children":664},[665,666,667],{"id":413,"depth":647,"text":413},{"id":426,"depth":647,"text":426},{"id":439,"depth":647,"text":439},{"id":453,"depth":650,"text":453,"children":669},[670,671],{"id":458,"depth":647,"text":458},{"id":471,"depth":647,"text":474},{"id":485,"depth":650,"text":488,"children":673},[674],{"id":491,"depth":647,"text":494},{"id":505,"depth":650,"text":505},{"id":519,"depth":650,"text":519},{"id":532,"depth":650,"text":532},{"id":597,"depth":650,"text":597},"markdown","content:topics:seo:keyword-research-guide.md","content","topics/seo/keyword-research-guide.md","topics/seo/keyword-research-guide","md",[686,1613,2718],{"_path":687,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":688,"description":689,"date":690,"topic":5,"author":11,"tags":691,"image":697,"featured":18,"readingTime":698,"body":699,"_type":679,"_id":1610,"_source":681,"_file":1611,"_stem":1612,"_extension":684},"/topics/seo/javascript-seo-complete-solution","JavaScript SEO 完整解决方案","从抓取/渲染/索引原理出发，系统讲清 JS 应用的 SEO 风险与治理方案，覆盖 SSR/SSG/ISR、预渲染、元信息、结构化数据、站点地图与可观测性。","2026-01-20",[692,693,694,695,696],"SEO","JavaScript SEO","SSR","SSG","预渲染","/images/topics/javascript-seo.jpg",24,{"type":21,"children":700,"toc":1585},[701,706,711,716,739,744,767,772,776,782,787,820,825,838,843,846,852,858,876,882,1024,1027,1033,1039,1044,1057,1063,1068,1109,1114,1133,1139,1144,1162,1167,1180,1186,1205,1211,1224,1230,1235,1253,1256,1262,1268,1281,1287,1292,1321,1326,1345,1351,1364,1367,1373,1378,1383,1396,1401,1419,1422,1428,1461,1464,1470,1550,1553,1557,1562],{"type":24,"tag":25,"props":702,"children":704},{"id":703},"javascript-seo-完整解决方案",[705],{"type":29,"value":688},{"type":24,"tag":36,"props":707,"children":708},{},[709],{"type":29,"value":710},"JavaScript SEO 不是“给 SPA 加个 title”这么简单。",{"type":24,"tag":36,"props":712,"children":713},{},[714],{"type":29,"value":715},"它是一套围绕搜索引擎工作方式建立的工程体系：",{"type":24,"tag":601,"props":717,"children":718},{},[719,724,729,734],{"type":24,"tag":545,"props":720,"children":721},{},[722],{"type":29,"value":723},"搜索引擎能不能抓到？（Crawl）",{"type":24,"tag":545,"props":725,"children":726},{},[727],{"type":29,"value":728},"能不能正确渲染？（Render）",{"type":24,"tag":545,"props":730,"children":731},{},[732],{"type":29,"value":733},"能不能正确理解与收录？（Index）",{"type":24,"tag":545,"props":735,"children":736},{},[737],{"type":29,"value":738},"能不能稳定更新？（Refresh）",{"type":24,"tag":36,"props":740,"children":741},{},[742],{"type":29,"value":743},"现代站点多是 Nuxt/Next/React/Vue 驱动，若你没有一套系统方案，很容易出现：",{"type":24,"tag":601,"props":745,"children":746},{},[747,752,757,762],{"type":24,"tag":545,"props":748,"children":749},{},[750],{"type":29,"value":751},"页面在浏览器里正常，但搜索引擎看到空壳",{"type":24,"tag":545,"props":753,"children":754},{},[755],{"type":29,"value":756},"收录了，但 canonical/分页/结构化数据混乱",{"type":24,"tag":545,"props":758,"children":759},{},[760],{"type":29,"value":761},"新内容更新慢、旧内容不刷新",{"type":24,"tag":545,"props":763,"children":764},{},[765],{"type":29,"value":766},"性能指标差导致排名受影响",{"type":24,"tag":36,"props":768,"children":769},{},[770],{"type":29,"value":771},"这篇文章给一套“从架构到细节”的完整解决方案，并提供上线检查清单。",{"type":24,"tag":773,"props":774,"children":775},"hr",{},[],{"type":24,"tag":25,"props":777,"children":779},{"id":778},"_1-先理解搜索引擎的三步抓取渲染索引",[780],{"type":29,"value":781},"1. 先理解搜索引擎的三步：抓取、渲染、索引",{"type":24,"tag":36,"props":783,"children":784},{},[785],{"type":29,"value":786},"简化模型：",{"type":24,"tag":541,"props":788,"children":789},{},[790,800,810],{"type":24,"tag":545,"props":791,"children":792},{},[793,798],{"type":24,"tag":142,"props":794,"children":795},{},[796],{"type":29,"value":797},"抓取",{"type":29,"value":799},"：拿到 HTML",{"type":24,"tag":545,"props":801,"children":802},{},[803,808],{"type":24,"tag":142,"props":804,"children":805},{},[806],{"type":29,"value":807},"渲染",{"type":29,"value":809},"：执行/解析必要资源，获得 DOM",{"type":24,"tag":545,"props":811,"children":812},{},[813,818],{"type":24,"tag":142,"props":814,"children":815},{},[816],{"type":29,"value":817},"索引",{"type":29,"value":819},"：抽取可索引信息（标题、正文、链接、结构化数据）",{"type":24,"tag":36,"props":821,"children":822},{},[823],{"type":29,"value":824},"JS 应用的风险主要出在第 2 步：",{"type":24,"tag":601,"props":826,"children":827},{},[828,833],{"type":24,"tag":545,"props":829,"children":830},{},[831],{"type":29,"value":832},"渲染是昂贵的",{"type":24,"tag":545,"props":834,"children":835},{},[836],{"type":29,"value":837},"资源加载/执行失败会导致渲染失败",{"type":24,"tag":36,"props":839,"children":840},{},[841],{"type":29,"value":842},"因此，“能 SSR/SSG 的内容就不要依赖客户端渲染”是基本原则。",{"type":24,"tag":773,"props":844,"children":845},{},[],{"type":24,"tag":25,"props":847,"children":849},{"id":848},"_2-选型ssr-ssg-isr-预渲染怎么选",[850],{"type":29,"value":851},"2. 选型：SSR / SSG / ISR / 预渲染怎么选？",{"type":24,"tag":62,"props":853,"children":855},{"id":854},"_21-规则可索引内容优先静态化",[856],{"type":29,"value":857},"2.1 规则：可索引内容优先静态化",{"type":24,"tag":601,"props":859,"children":860},{},[861,866,871],{"type":24,"tag":545,"props":862,"children":863},{},[864],{"type":29,"value":865},"内容页（文章、产品详情）：优先 SSG/ISR",{"type":24,"tag":545,"props":867,"children":868},{},[869],{"type":29,"value":870},"列表页：SSG/ISR + 分页",{"type":24,"tag":545,"props":872,"children":873},{},[874],{"type":29,"value":875},"个性化页（用户中心）：不索引，可 CSR",{"type":24,"tag":62,"props":877,"children":879},{"id":878},"_22-各模式优缺点",[880],{"type":29,"value":881},"2.2 各模式优缺点",{"type":24,"tag":103,"props":883,"children":884},{},[885,911],{"type":24,"tag":107,"props":886,"children":887},{},[888],{"type":24,"tag":111,"props":889,"children":890},{},[891,896,901,906],{"type":24,"tag":115,"props":892,"children":893},{},[894],{"type":29,"value":895},"模式",{"type":24,"tag":115,"props":897,"children":898},{},[899],{"type":29,"value":900},"SEO 友好",{"type":24,"tag":115,"props":902,"children":903},{},[904],{"type":29,"value":905},"成本",{"type":24,"tag":115,"props":907,"children":908},{},[909],{"type":29,"value":910},"适用",{"type":24,"tag":131,"props":912,"children":913},{},[914,937,959,980,1002],{"type":24,"tag":111,"props":915,"children":916},{},[917,922,927,932],{"type":24,"tag":138,"props":918,"children":919},{},[920],{"type":29,"value":921},"CSR",{"type":24,"tag":138,"props":923,"children":924},{},[925],{"type":29,"value":926},"较差/不稳定",{"type":24,"tag":138,"props":928,"children":929},{},[930],{"type":29,"value":931},"低",{"type":24,"tag":138,"props":933,"children":934},{},[935],{"type":29,"value":936},"非索引页面",{"type":24,"tag":111,"props":938,"children":939},{},[940,944,949,954],{"type":24,"tag":138,"props":941,"children":942},{},[943],{"type":29,"value":694},{"type":24,"tag":138,"props":945,"children":946},{},[947],{"type":29,"value":948},"好",{"type":24,"tag":138,"props":950,"children":951},{},[952],{"type":29,"value":953},"中/高",{"type":24,"tag":138,"props":955,"children":956},{},[957],{"type":29,"value":958},"动态但可缓存",{"type":24,"tag":111,"props":960,"children":961},{},[962,966,971,975],{"type":24,"tag":138,"props":963,"children":964},{},[965],{"type":29,"value":695},{"type":24,"tag":138,"props":967,"children":968},{},[969],{"type":29,"value":970},"最好",{"type":24,"tag":138,"props":972,"children":973},{},[974],{"type":29,"value":931},{"type":24,"tag":138,"props":976,"children":977},{},[978],{"type":29,"value":979},"内容型页面",{"type":24,"tag":111,"props":981,"children":982},{},[983,988,992,997],{"type":24,"tag":138,"props":984,"children":985},{},[986],{"type":29,"value":987},"ISR",{"type":24,"tag":138,"props":989,"children":990},{},[991],{"type":29,"value":948},{"type":24,"tag":138,"props":993,"children":994},{},[995],{"type":29,"value":996},"低/中",{"type":24,"tag":138,"props":998,"children":999},{},[1000],{"type":29,"value":1001},"内容更新频繁",{"type":24,"tag":111,"props":1003,"children":1004},{},[1005,1009,1014,1019],{"type":24,"tag":138,"props":1006,"children":1007},{},[1008],{"type":29,"value":696},{"type":24,"tag":138,"props":1010,"children":1011},{},[1012],{"type":29,"value":1013},"介于 CSR 与 SSG",{"type":24,"tag":138,"props":1015,"children":1016},{},[1017],{"type":29,"value":1018},"中",{"type":24,"tag":138,"props":1020,"children":1021},{},[1022],{"type":29,"value":1023},"SPA 迁移过渡",{"type":24,"tag":773,"props":1025,"children":1026},{},[],{"type":24,"tag":25,"props":1028,"children":1030},{"id":1029},"_3-最关键的-6-件事js-seo-体系的骨架",[1031],{"type":29,"value":1032},"3. 最关键的 6 件事：JS SEO 体系的骨架",{"type":24,"tag":62,"props":1034,"children":1036},{"id":1035},"_31-确保可访问的-htmlssrssg",[1037],{"type":29,"value":1038},"3.1 确保可访问的 HTML（SSR/SSG）",{"type":24,"tag":36,"props":1040,"children":1041},{},[1042],{"type":29,"value":1043},"目标：",{"type":24,"tag":601,"props":1045,"children":1046},{},[1047,1052],{"type":24,"tag":545,"props":1048,"children":1049},{},[1050],{"type":29,"value":1051},"不执行 JS 也能看到核心内容",{"type":24,"tag":545,"props":1053,"children":1054},{},[1055],{"type":29,"value":1056},"重要链接在 HTML 中可抓取（不是点击后才出现）",{"type":24,"tag":62,"props":1058,"children":1060},{"id":1059},"_32-元信息titledescriptioncanonicalrobots",[1061],{"type":29,"value":1062},"3.2 元信息：title/description/canonical/robots",{"type":24,"tag":36,"props":1064,"children":1065},{},[1066],{"type":29,"value":1067},"每个可索引页面至少要正确输出：",{"type":24,"tag":601,"props":1069,"children":1070},{},[1071,1080,1089,1098],{"type":24,"tag":545,"props":1072,"children":1073},{},[1074],{"type":24,"tag":52,"props":1075,"children":1077},{"className":1076},[],[1078],{"type":29,"value":1079},"\u003Ctitle>",{"type":24,"tag":545,"props":1081,"children":1082},{},[1083],{"type":24,"tag":52,"props":1084,"children":1086},{"className":1085},[],[1087],{"type":29,"value":1088},"\u003Cmeta name=\"description\">",{"type":24,"tag":545,"props":1090,"children":1091},{},[1092],{"type":24,"tag":52,"props":1093,"children":1095},{"className":1094},[],[1096],{"type":29,"value":1097},"\u003Clink rel=\"canonical\">",{"type":24,"tag":545,"props":1099,"children":1100},{},[1101,1107],{"type":24,"tag":52,"props":1102,"children":1104},{"className":1103},[],[1105],{"type":29,"value":1106},"\u003Cmeta name=\"robots\">",{"type":29,"value":1108},"（必要时 noindex）",{"type":24,"tag":36,"props":1110,"children":1111},{},[1112],{"type":29,"value":1113},"常见坑：",{"type":24,"tag":601,"props":1115,"children":1116},{},[1117,1122],{"type":24,"tag":545,"props":1118,"children":1119},{},[1120],{"type":29,"value":1121},"canonical 指向错误（导致重复收录或权重分散）",{"type":24,"tag":545,"props":1123,"children":1124},{},[1125,1127],{"type":29,"value":1126},"多语言站点缺 ",{"type":24,"tag":52,"props":1128,"children":1130},{"className":1129},[],[1131],{"type":29,"value":1132},"hreflang",{"type":24,"tag":62,"props":1134,"children":1136},{"id":1135},"_33-结构化数据schemaorg",[1137],{"type":29,"value":1138},"3.3 结构化数据（Schema.org）",{"type":24,"tag":36,"props":1140,"children":1141},{},[1142],{"type":29,"value":1143},"结构化数据是 JS SEO 的“理解层”。",{"type":24,"tag":601,"props":1145,"children":1146},{},[1147,1152,1157],{"type":24,"tag":545,"props":1148,"children":1149},{},[1150],{"type":29,"value":1151},"文章：Article",{"type":24,"tag":545,"props":1153,"children":1154},{},[1155],{"type":29,"value":1156},"面包屑：BreadcrumbList",{"type":24,"tag":545,"props":1158,"children":1159},{},[1160],{"type":29,"value":1161},"产品：Product",{"type":24,"tag":36,"props":1163,"children":1164},{},[1165],{"type":29,"value":1166},"要点：",{"type":24,"tag":601,"props":1168,"children":1169},{},[1170,1175],{"type":24,"tag":545,"props":1171,"children":1172},{},[1173],{"type":29,"value":1174},"用 JSON-LD",{"type":24,"tag":545,"props":1176,"children":1177},{},[1178],{"type":29,"value":1179},"保证与页面内容一致（不要造假）",{"type":24,"tag":62,"props":1181,"children":1183},{"id":1182},"_34-站点地图sitemap与更新策略",[1184],{"type":29,"value":1185},"3.4 站点地图（sitemap）与更新策略",{"type":24,"tag":601,"props":1187,"children":1188},{},[1189,1200],{"type":24,"tag":545,"props":1190,"children":1191},{},[1192,1198],{"type":24,"tag":52,"props":1193,"children":1195},{"className":1194},[],[1196],{"type":29,"value":1197},"sitemap.xml",{"type":29,"value":1199}," 是发现新内容的高效入口",{"type":24,"tag":545,"props":1201,"children":1202},{},[1203],{"type":29,"value":1204},"更新频繁时，sitemap 也要频繁更新",{"type":24,"tag":62,"props":1206,"children":1208},{"id":1207},"_35-内链与信息架构",[1209],{"type":29,"value":1210},"3.5 内链与信息架构",{"type":24,"tag":601,"props":1212,"children":1213},{},[1214,1219],{"type":24,"tag":545,"props":1215,"children":1216},{},[1217],{"type":29,"value":1218},"列表页、专题页是权重分发的核心",{"type":24,"tag":545,"props":1220,"children":1221},{},[1222],{"type":29,"value":1223},"不要让内容“孤岛化”（只有搜索能到）",{"type":24,"tag":62,"props":1225,"children":1227},{"id":1226},"_36-可观测性你必须能回答搜得到吗",[1228],{"type":29,"value":1229},"3.6 可观测性：你必须能回答“搜得到吗？”",{"type":24,"tag":36,"props":1231,"children":1232},{},[1233],{"type":29,"value":1234},"建议建立：",{"type":24,"tag":601,"props":1236,"children":1237},{},[1238,1243,1248],{"type":24,"tag":545,"props":1239,"children":1240},{},[1241],{"type":29,"value":1242},"抓取日志（服务端 access log 识别 bot）",{"type":24,"tag":545,"props":1244,"children":1245},{},[1246],{"type":29,"value":1247},"渲染错误监控（SSR error）",{"type":24,"tag":545,"props":1249,"children":1250},{},[1251],{"type":29,"value":1252},"收录状态监控（Search Console）",{"type":24,"tag":773,"props":1254,"children":1255},{},[],{"type":24,"tag":25,"props":1257,"children":1259},{"id":1258},"_4-nuxtnext-的落地要点工程视角",[1260],{"type":29,"value":1261},"4. Nuxt/Next 的落地要点（工程视角）",{"type":24,"tag":62,"props":1263,"children":1265},{"id":1264},"_41-路由与页面输出",[1266],{"type":29,"value":1267},"4.1 路由与页面输出",{"type":24,"tag":601,"props":1269,"children":1270},{},[1271,1276],{"type":24,"tag":545,"props":1272,"children":1273},{},[1274],{"type":29,"value":1275},"列表/详情页使用 SSG/ISR",{"type":24,"tag":545,"props":1277,"children":1278},{},[1279],{"type":29,"value":1280},"对 query 参数做规范化（避免重复内容）",{"type":24,"tag":62,"props":1282,"children":1284},{"id":1283},"_42-处理重复内容canonical-参数治理",[1285],{"type":29,"value":1286},"4.2 处理重复内容：canonical + 参数治理",{"type":24,"tag":36,"props":1288,"children":1289},{},[1290],{"type":29,"value":1291},"典型重复来源：",{"type":24,"tag":601,"props":1293,"children":1294},{},[1295,1304],{"type":24,"tag":545,"props":1296,"children":1297},{},[1298],{"type":24,"tag":52,"props":1299,"children":1301},{"className":1300},[],[1302],{"type":29,"value":1303},"utm_*",{"type":24,"tag":545,"props":1305,"children":1306},{},[1307,1313,1315],{"type":24,"tag":52,"props":1308,"children":1310},{"className":1309},[],[1311],{"type":29,"value":1312},"?sort=",{"type":29,"value":1314}," ",{"type":24,"tag":52,"props":1316,"children":1318},{"className":1317},[],[1319],{"type":29,"value":1320},"?page=",{"type":24,"tag":36,"props":1322,"children":1323},{},[1324],{"type":29,"value":1325},"策略：",{"type":24,"tag":601,"props":1327,"children":1328},{},[1329,1334],{"type":24,"tag":545,"props":1330,"children":1331},{},[1332],{"type":29,"value":1333},"把无意义参数 301 到规范 URL",{"type":24,"tag":545,"props":1335,"children":1336},{},[1337,1343],{"type":24,"tag":52,"props":1338,"children":1340},{"className":1339},[],[1341],{"type":29,"value":1342},"page",{"type":29,"value":1344}," 分页要有规范化链接（prev/next）",{"type":24,"tag":62,"props":1346,"children":1348},{"id":1347},"_43-404410-与删除策略",[1349],{"type":29,"value":1350},"4.3 404/410 与删除策略",{"type":24,"tag":601,"props":1352,"children":1353},{},[1354,1359],{"type":24,"tag":545,"props":1355,"children":1356},{},[1357],{"type":29,"value":1358},"内容下线：用 410（更明确）",{"type":24,"tag":545,"props":1360,"children":1361},{},[1362],{"type":29,"value":1363},"软删除：返回 404 但要避免被缓存为 200",{"type":24,"tag":773,"props":1365,"children":1366},{},[],{"type":24,"tag":25,"props":1368,"children":1370},{"id":1369},"_5-渲染与性能core-web-vitals-会影响-seo",[1371],{"type":29,"value":1372},"5. 渲染与性能：Core Web Vitals 会影响 SEO",{"type":24,"tag":36,"props":1374,"children":1375},{},[1376],{"type":29,"value":1377},"SEO 不再只是“内容”。",{"type":24,"tag":36,"props":1379,"children":1380},{},[1381],{"type":29,"value":1382},"当你的 CWV 很差时：",{"type":24,"tag":601,"props":1384,"children":1385},{},[1386,1391],{"type":24,"tag":545,"props":1387,"children":1388},{},[1389],{"type":29,"value":1390},"体验差导致跳出率高",{"type":24,"tag":545,"props":1392,"children":1393},{},[1394],{"type":29,"value":1395},"排名可能受影响",{"type":24,"tag":36,"props":1397,"children":1398},{},[1399],{"type":29,"value":1400},"因此 JS SEO 必须与性能一起治理：",{"type":24,"tag":601,"props":1402,"children":1403},{},[1404,1409,1414],{"type":24,"tag":545,"props":1405,"children":1406},{},[1407],{"type":29,"value":1408},"LCP（内容出现快）",{"type":24,"tag":545,"props":1410,"children":1411},{},[1412],{"type":29,"value":1413},"INP（交互不卡）",{"type":24,"tag":545,"props":1415,"children":1416},{},[1417],{"type":29,"value":1418},"CLS（不抖）",{"type":24,"tag":773,"props":1420,"children":1421},{},[],{"type":24,"tag":25,"props":1423,"children":1425},{"id":1424},"_6-js-seo-的常见致命坑清单",[1426],{"type":29,"value":1427},"6. JS SEO 的常见“致命坑”清单",{"type":24,"tag":601,"props":1429,"children":1430},{},[1431,1436,1441,1446,1451,1456],{"type":24,"tag":545,"props":1432,"children":1433},{},[1434],{"type":29,"value":1435},"页面只有骨架，正文靠客户端渲染",{"type":24,"tag":545,"props":1437,"children":1438},{},[1439],{"type":29,"value":1440},"关键链接被 JS 隐藏/点击后才出现",{"type":24,"tag":545,"props":1442,"children":1443},{},[1444],{"type":29,"value":1445},"title/description 在客户端动态设置",{"type":24,"tag":545,"props":1447,"children":1448},{},[1449],{"type":29,"value":1450},"canonical 指向错误或缺失",{"type":24,"tag":545,"props":1452,"children":1453},{},[1454],{"type":29,"value":1455},"sitemap 不更新",{"type":24,"tag":545,"props":1457,"children":1458},{},[1459],{"type":29,"value":1460},"robots/noindex 配置错误",{"type":24,"tag":773,"props":1462,"children":1463},{},[],{"type":24,"tag":25,"props":1465,"children":1467},{"id":1466},"_7-上线检查清单可复制",[1468],{"type":29,"value":1469},"7. 上线检查清单（可复制）",{"type":24,"tag":601,"props":1471,"children":1474},{"className":1472},[1473],"contains-task-list",[1475,1487,1496,1505,1514,1523,1532,1541],{"type":24,"tag":545,"props":1476,"children":1479},{"className":1477},[1478],"task-list-item",[1480,1485],{"type":24,"tag":1481,"props":1482,"children":1484},"input",{"disabled":18,"type":1483},"checkbox",[],{"type":29,"value":1486}," 关键页面在无 JS 时是否可见核心内容",{"type":24,"tag":545,"props":1488,"children":1490},{"className":1489},[1478],[1491,1494],{"type":24,"tag":1481,"props":1492,"children":1493},{"disabled":18,"type":1483},[],{"type":29,"value":1495}," title/description/canonical 是否正确",{"type":24,"tag":545,"props":1497,"children":1499},{"className":1498},[1478],[1500,1503],{"type":24,"tag":1481,"props":1501,"children":1502},{"disabled":18,"type":1483},[],{"type":29,"value":1504}," 结构化数据是否与内容一致",{"type":24,"tag":545,"props":1506,"children":1508},{"className":1507},[1478],[1509,1512],{"type":24,"tag":1481,"props":1510,"children":1511},{"disabled":18,"type":1483},[],{"type":29,"value":1513}," sitemap 是否覆盖所有可索引页面",{"type":24,"tag":545,"props":1515,"children":1517},{"className":1516},[1478],[1518,1521],{"type":24,"tag":1481,"props":1519,"children":1520},{"disabled":18,"type":1483},[],{"type":29,"value":1522}," robots/noindex 是否符合预期",{"type":24,"tag":545,"props":1524,"children":1526},{"className":1525},[1478],[1527,1530],{"type":24,"tag":1481,"props":1528,"children":1529},{"disabled":18,"type":1483},[],{"type":29,"value":1531}," 是否存在重复内容（参数/多路径）",{"type":24,"tag":545,"props":1533,"children":1535},{"className":1534},[1478],[1536,1539],{"type":24,"tag":1481,"props":1537,"children":1538},{"disabled":18,"type":1483},[],{"type":29,"value":1540}," 404/410 是否正确",{"type":24,"tag":545,"props":1542,"children":1544},{"className":1543},[1478],[1545,1548],{"type":24,"tag":1481,"props":1546,"children":1547},{"disabled":18,"type":1483},[],{"type":29,"value":1549}," Core Web Vitals 是否达标（至少 p75）",{"type":24,"tag":773,"props":1551,"children":1552},{},[],{"type":24,"tag":25,"props":1554,"children":1555},{"id":532},[1556],{"type":29,"value":532},{"type":24,"tag":36,"props":1558,"children":1559},{},[1560],{"type":29,"value":1561},"JavaScript SEO 的正确做法是：",{"type":24,"tag":601,"props":1563,"children":1564},{},[1565,1570,1575,1580],{"type":24,"tag":545,"props":1566,"children":1567},{},[1568],{"type":29,"value":1569},"用 SSR/SSG/ISR 把可索引内容静态化",{"type":24,"tag":545,"props":1571,"children":1572},{},[1573],{"type":29,"value":1574},"用元信息与结构化数据让搜索引擎“理解”",{"type":24,"tag":545,"props":1576,"children":1577},{},[1578],{"type":29,"value":1579},"用 sitemap 与内链让内容“被发现”",{"type":24,"tag":545,"props":1581,"children":1582},{},[1583],{"type":29,"value":1584},"用可观测性保证“可验证与可演进”",{"title":7,"searchDepth":647,"depth":647,"links":1586},[1587,1588,1589,1593,1601,1606,1607,1608,1609],{"id":703,"depth":650,"text":688},{"id":778,"depth":650,"text":781},{"id":848,"depth":650,"text":851,"children":1590},[1591,1592],{"id":854,"depth":647,"text":857},{"id":878,"depth":647,"text":881},{"id":1029,"depth":650,"text":1032,"children":1594},[1595,1596,1597,1598,1599,1600],{"id":1035,"depth":647,"text":1038},{"id":1059,"depth":647,"text":1062},{"id":1135,"depth":647,"text":1138},{"id":1182,"depth":647,"text":1185},{"id":1207,"depth":647,"text":1210},{"id":1226,"depth":647,"text":1229},{"id":1258,"depth":650,"text":1261,"children":1602},[1603,1604,1605],{"id":1264,"depth":647,"text":1267},{"id":1283,"depth":647,"text":1286},{"id":1347,"depth":647,"text":1350},{"id":1369,"depth":650,"text":1372},{"id":1424,"depth":650,"text":1427},{"id":1466,"depth":650,"text":1469},{"id":532,"depth":650,"text":532},"content:topics:seo:javascript-seo-complete-solution.md","topics/seo/javascript-seo-complete-solution.md","topics/seo/javascript-seo-complete-solution",{"_path":1614,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":1615,"description":1616,"date":1617,"topic":5,"author":11,"tags":1618,"image":1623,"featured":18,"readingTime":1624,"body":1625,"_type":679,"_id":2715,"_source":681,"_file":2716,"_stem":2717,"_extension":684},"/topics/seo/schema-org-structured-data-guide","Schema.org 结构化数据实战指南：让搜索引擎真正理解你的内容","从原理到实战，全面讲解 Schema.org 结构化数据的应用方法，包括 JSON-LD 实现、Rich Snippets 优化、常见类型配置以及在 Nuxt/Next.js 中的最佳实践，助力网站获得更好的搜索展现效果。","2026-01-15",[692,1619,1620,1621,1622],"结构化数据","Schema.org","JSON-LD","Rich Snippets","/images/topics/schema-org-guide.jpg",14,{"type":21,"children":1626,"toc":2678},[1627,1633,1639,1649,1655,1663,1668,1768,1776,1788,1806,1814,1819,1825,1831,1842,1847,1858,1866,1894,1899,1905,1910,1921,1929,2060,2066,2071,2080,2088,2097,2103,2108,2117,2123,2128,2137,2143,2148,2157,2163,2168,2177,2182,2188,2196,2207,2215,2226,2235,2246,2252,2260,2271,2279,2288,2297,2302,2308,2319,2328,2334,2345,2350,2449,2457,2466,2471,2477,2482,2491,2497,2506,2512,2522,2526,2531,2536,2595,2600,2623,2628],{"type":24,"tag":25,"props":1628,"children":1630},{"id":1629},"schemaorg-结构化数据实战指南",[1631],{"type":29,"value":1632},"Schema.org 结构化数据实战指南",{"type":24,"tag":25,"props":1634,"children":1636},{"id":1635},"什么是结构化数据",[1637],{"type":29,"value":1638},"什么是结构化数据？",{"type":24,"tag":36,"props":1640,"children":1641},{},[1642,1647],{"type":24,"tag":142,"props":1643,"children":1644},{},[1645],{"type":29,"value":1646},"结构化数据（Structured Data）",{"type":29,"value":1648}," 是一种标准化的格式，用于向搜索引擎提供关于页面内容的明确信息。它就像给网页内容贴上\"标签\"，让搜索引擎不再需要\"猜测\"页面在讲什么，而是能够精确理解每个内容元素的含义。",{"type":24,"tag":62,"props":1650,"children":1652},{"id":1651},"为什么结构化数据如此重要",[1653],{"type":29,"value":1654},"为什么结构化数据如此重要？",{"type":24,"tag":36,"props":1656,"children":1657},{},[1658],{"type":24,"tag":142,"props":1659,"children":1660},{},[1661],{"type":29,"value":1662},"1. 获得 Rich Snippets（富媒体摘要）",{"type":24,"tag":36,"props":1664,"children":1665},{},[1666],{"type":29,"value":1667},"使用结构化数据的页面可以在搜索结果中展示增强型内容：",{"type":24,"tag":103,"props":1669,"children":1670},{},[1671,1687],{"type":24,"tag":107,"props":1672,"children":1673},{},[1674],{"type":24,"tag":111,"props":1675,"children":1676},{},[1677,1682],{"type":24,"tag":115,"props":1678,"children":1679},{},[1680],{"type":29,"value":1681},"类型",{"type":24,"tag":115,"props":1683,"children":1684},{},[1685],{"type":29,"value":1686},"展示效果",{"type":24,"tag":131,"props":1688,"children":1689},{},[1690,1703,1716,1729,1742,1755],{"type":24,"tag":111,"props":1691,"children":1692},{},[1693,1698],{"type":24,"tag":138,"props":1694,"children":1695},{},[1696],{"type":29,"value":1697},"产品",{"type":24,"tag":138,"props":1699,"children":1700},{},[1701],{"type":29,"value":1702},"价格、评分、库存状态",{"type":24,"tag":111,"props":1704,"children":1705},{},[1706,1711],{"type":24,"tag":138,"props":1707,"children":1708},{},[1709],{"type":29,"value":1710},"文章",{"type":24,"tag":138,"props":1712,"children":1713},{},[1714],{"type":29,"value":1715},"发布时间、作者头像、阅读时间",{"type":24,"tag":111,"props":1717,"children":1718},{},[1719,1724],{"type":24,"tag":138,"props":1720,"children":1721},{},[1722],{"type":29,"value":1723},"FAQ",{"type":24,"tag":138,"props":1725,"children":1726},{},[1727],{"type":29,"value":1728},"直接展开问答列表",{"type":24,"tag":111,"props":1730,"children":1731},{},[1732,1737],{"type":24,"tag":138,"props":1733,"children":1734},{},[1735],{"type":29,"value":1736},"菜谱",{"type":24,"tag":138,"props":1738,"children":1739},{},[1740],{"type":29,"value":1741},"烹饪时间、卡路里、评分",{"type":24,"tag":111,"props":1743,"children":1744},{},[1745,1750],{"type":24,"tag":138,"props":1746,"children":1747},{},[1748],{"type":29,"value":1749},"活动",{"type":24,"tag":138,"props":1751,"children":1752},{},[1753],{"type":29,"value":1754},"日期、地点、票价",{"type":24,"tag":111,"props":1756,"children":1757},{},[1758,1763],{"type":24,"tag":138,"props":1759,"children":1760},{},[1761],{"type":29,"value":1762},"本地商家",{"type":24,"tag":138,"props":1764,"children":1765},{},[1766],{"type":29,"value":1767},"营业时间、电话、地址、评价",{"type":24,"tag":36,"props":1769,"children":1770},{},[1771],{"type":24,"tag":142,"props":1772,"children":1773},{},[1774],{"type":29,"value":1775},"2. 提升点击率（CTR）",{"type":24,"tag":36,"props":1777,"children":1778},{},[1779,1781,1786],{"type":29,"value":1780},"根据 Google 的研究，Rich Snippets 可以将点击率提升 ",{"type":24,"tag":142,"props":1782,"children":1783},{},[1784],{"type":29,"value":1785},"20-30%",{"type":29,"value":1787},"，因为：",{"type":24,"tag":601,"props":1789,"children":1790},{},[1791,1796,1801],{"type":24,"tag":545,"props":1792,"children":1793},{},[1794],{"type":29,"value":1795},"占据更多搜索结果空间",{"type":24,"tag":545,"props":1797,"children":1798},{},[1799],{"type":29,"value":1800},"提供更丰富的预览信息",{"type":24,"tag":545,"props":1802,"children":1803},{},[1804],{"type":29,"value":1805},"建立用户信任感",{"type":24,"tag":36,"props":1807,"children":1808},{},[1809],{"type":24,"tag":142,"props":1810,"children":1811},{},[1812],{"type":29,"value":1813},"3. 支持语音搜索和 AI 助手",{"type":24,"tag":36,"props":1815,"children":1816},{},[1817],{"type":29,"value":1818},"结构化数据是语音搜索和 AI 搜索（如 Google SGE）理解网页内容的核心依据。",{"type":24,"tag":25,"props":1820,"children":1822},{"id":1821},"schemaorg-基础概念",[1823],{"type":29,"value":1824},"Schema.org 基础概念",{"type":24,"tag":62,"props":1826,"children":1828},{"id":1827},"schemaorg-是什么",[1829],{"type":29,"value":1830},"Schema.org 是什么？",{"type":24,"tag":36,"props":1832,"children":1833},{},[1834,1840],{"type":24,"tag":608,"props":1835,"children":1838},{"href":1836,"rel":1837},"https://schema.org",[612],[1839],{"type":29,"value":1620},{"type":29,"value":1841}," 是由 Google、Microsoft、Yahoo 和 Yandex 联合创建的结构化数据词汇表。它定义了数百种类型（Type）和属性（Property），覆盖了几乎所有网页内容场景。",{"type":24,"tag":62,"props":1843,"children":1845},{"id":1844},"三种实现格式",[1846],{"type":29,"value":1844},{"type":24,"tag":47,"props":1848,"children":1853},{"className":1849,"code":1851,"language":1852,"meta":7},[1850],"language-html","\u003C!-- 1. JSON-LD（推荐）：独立的 script 标签 -->\n\u003Cscript type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"Article\",\n  \"headline\": \"文章标题\",\n  \"author\": \"作者名\"\n}\n\u003C/script>\n\n\u003C!-- 2. Microdata：嵌入 HTML 属性 -->\n\u003Carticle itemscope itemtype=\"https://schema.org/Article\">\n  \u003Ch1 itemprop=\"headline\">文章标题\u003C/h1>\n  \u003Cspan itemprop=\"author\">作者名\u003C/span>\n\u003C/article>\n\n\u003C!-- 3. RDFa：类似 Microdata，使用不同属性 -->\n\u003Carticle vocab=\"https://schema.org/\" typeof=\"Article\">\n  \u003Ch1 property=\"headline\">文章标题\u003C/h1>\n  \u003Cspan property=\"author\">作者名\u003C/span>\n\u003C/article>\n","html",[1854],{"type":24,"tag":52,"props":1855,"children":1856},{"__ignoreMap":7},[1857],{"type":29,"value":1851},{"type":24,"tag":36,"props":1859,"children":1860},{},[1861],{"type":24,"tag":142,"props":1862,"children":1863},{},[1864],{"type":29,"value":1865},"为什么推荐 JSON-LD？",{"type":24,"tag":601,"props":1867,"children":1868},{},[1869,1874,1879,1884,1889],{"type":24,"tag":545,"props":1870,"children":1871},{},[1872],{"type":29,"value":1873},"✅ 与 HTML 完全分离，不影响页面结构",{"type":24,"tag":545,"props":1875,"children":1876},{},[1877],{"type":29,"value":1878},"✅ 易于动态生成和维护",{"type":24,"tag":545,"props":1880,"children":1881},{},[1882],{"type":29,"value":1883},"✅ Google 明确推荐",{"type":24,"tag":545,"props":1885,"children":1886},{},[1887],{"type":29,"value":1888},"✅ 便于调试和验证",{"type":24,"tag":545,"props":1890,"children":1891},{},[1892],{"type":29,"value":1893},"✅ 支持嵌套和复杂结构",{"type":24,"tag":25,"props":1895,"children":1897},{"id":1896},"常用结构化数据类型详解",[1898],{"type":29,"value":1896},{"type":24,"tag":62,"props":1900,"children":1902},{"id":1901},"_1-article文章",[1903],{"type":29,"value":1904},"1. Article（文章）",{"type":24,"tag":36,"props":1906,"children":1907},{},[1908],{"type":29,"value":1909},"适用于博客文章、新闻报道、技术文档等。",{"type":24,"tag":47,"props":1911,"children":1916},{"className":1912,"code":1914,"language":1915,"meta":7},[1913],"language-json","{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"Article\",\n  \"headline\": \"Vue 3 响应式系统深度解析\",\n  \"description\": \"详细讲解 Vue 3 的核心特性和响应式原理\",\n  \"image\": [\n    \"https://example.com/images/vue3-guide-1x1.jpg\",\n    \"https://example.com/images/vue3-guide-4x3.jpg\",\n    \"https://example.com/images/vue3-guide-16x9.jpg\"\n  ],\n  \"datePublished\": \"2026-01-15T08:00:00+08:00\",\n  \"dateModified\": \"2026-01-15T10:30:00+08:00\",\n  \"author\": [{\n    \"@type\": \"Person\",\n    \"name\": \"张三\",\n    \"url\": \"https://example.com/authors/zhangsan\"\n  }],\n  \"publisher\": {\n    \"@type\": \"Organization\",\n    \"name\": \"HTMLPAGE\",\n    \"logo\": {\n      \"@type\": \"ImageObject\",\n      \"url\": \"https://example.com/logo.png\"\n    }\n  },\n  \"mainEntityOfPage\": {\n    \"@type\": \"WebPage\",\n    \"@id\": \"https://example.com/articles/vue3-guide\"\n  },\n  \"wordCount\": 3500,\n  \"articleSection\": \"前端开发\",\n  \"keywords\": [\"Vue 3\", \"响应式系统\", \"Composition API\"]\n}\n","json",[1917],{"type":24,"tag":52,"props":1918,"children":1919},{"__ignoreMap":7},[1920],{"type":29,"value":1914},{"type":24,"tag":36,"props":1922,"children":1923},{},[1924],{"type":24,"tag":142,"props":1925,"children":1926},{},[1927],{"type":29,"value":1928},"关键属性说明：",{"type":24,"tag":103,"props":1930,"children":1931},{},[1932,1953],{"type":24,"tag":107,"props":1933,"children":1934},{},[1935],{"type":24,"tag":111,"props":1936,"children":1937},{},[1938,1943,1948],{"type":24,"tag":115,"props":1939,"children":1940},{},[1941],{"type":29,"value":1942},"属性",{"type":24,"tag":115,"props":1944,"children":1945},{},[1946],{"type":29,"value":1947},"必需",{"type":24,"tag":115,"props":1949,"children":1950},{},[1951],{"type":29,"value":1952},"说明",{"type":24,"tag":131,"props":1954,"children":1955},{},[1956,1974,1991,2008,2026,2043],{"type":24,"tag":111,"props":1957,"children":1958},{},[1959,1964,1969],{"type":24,"tag":138,"props":1960,"children":1961},{},[1962],{"type":29,"value":1963},"headline",{"type":24,"tag":138,"props":1965,"children":1966},{},[1967],{"type":29,"value":1968},"✅",{"type":24,"tag":138,"props":1970,"children":1971},{},[1972],{"type":29,"value":1973},"文章标题，建议 \u003C 110 字符",{"type":24,"tag":111,"props":1975,"children":1976},{},[1977,1982,1986],{"type":24,"tag":138,"props":1978,"children":1979},{},[1980],{"type":29,"value":1981},"image",{"type":24,"tag":138,"props":1983,"children":1984},{},[1985],{"type":29,"value":1968},{"type":24,"tag":138,"props":1987,"children":1988},{},[1989],{"type":29,"value":1990},"至少一张图片，推荐提供多种比例",{"type":24,"tag":111,"props":1992,"children":1993},{},[1994,1999,2003],{"type":24,"tag":138,"props":1995,"children":1996},{},[1997],{"type":29,"value":1998},"datePublished",{"type":24,"tag":138,"props":2000,"children":2001},{},[2002],{"type":29,"value":1968},{"type":24,"tag":138,"props":2004,"children":2005},{},[2006],{"type":29,"value":2007},"首次发布时间，ISO 8601 格式",{"type":24,"tag":111,"props":2009,"children":2010},{},[2011,2016,2021],{"type":24,"tag":138,"props":2012,"children":2013},{},[2014],{"type":29,"value":2015},"dateModified",{"type":24,"tag":138,"props":2017,"children":2018},{},[2019],{"type":29,"value":2020},"推荐",{"type":24,"tag":138,"props":2022,"children":2023},{},[2024],{"type":29,"value":2025},"最后修改时间",{"type":24,"tag":111,"props":2027,"children":2028},{},[2029,2034,2038],{"type":24,"tag":138,"props":2030,"children":2031},{},[2032],{"type":29,"value":2033},"author",{"type":24,"tag":138,"props":2035,"children":2036},{},[2037],{"type":29,"value":1968},{"type":24,"tag":138,"props":2039,"children":2040},{},[2041],{"type":29,"value":2042},"作者信息，可以是数组",{"type":24,"tag":111,"props":2044,"children":2045},{},[2046,2051,2055],{"type":24,"tag":138,"props":2047,"children":2048},{},[2049],{"type":29,"value":2050},"publisher",{"type":24,"tag":138,"props":2052,"children":2053},{},[2054],{"type":29,"value":1968},{"type":24,"tag":138,"props":2056,"children":2057},{},[2058],{"type":29,"value":2059},"发布组织信息",{"type":24,"tag":62,"props":2061,"children":2063},{"id":2062},"_2-product产品",[2064],{"type":29,"value":2065},"2. Product（产品）",{"type":24,"tag":36,"props":2067,"children":2068},{},[2069],{"type":29,"value":2070},"适用于电商产品页、商品详情等。",{"type":24,"tag":47,"props":2072,"children":2075},{"className":2073,"code":2074,"language":1915,"meta":7},[1913],"{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"Product\",\n  \"name\": \"专业版网站模板\",\n  \"image\": [\n    \"https://example.com/products/template-pro.jpg\"\n  ],\n  \"description\": \"适用于企业官网的专业模板，响应式设计，支持暗黑模式\",\n  \"sku\": \"TPL-PRO-001\",\n  \"brand\": {\n    \"@type\": \"Brand\",\n    \"name\": \"HTMLPAGE\"\n  },\n  \"offers\": {\n    \"@type\": \"Offer\",\n    \"url\": \"https://example.com/products/template-pro\",\n    \"priceCurrency\": \"CNY\",\n    \"price\": \"299\",\n    \"priceValidUntil\": \"2026-12-31\",\n    \"availability\": \"https://schema.org/InStock\",\n    \"itemCondition\": \"https://schema.org/NewCondition\"\n  },\n  \"aggregateRating\": {\n    \"@type\": \"AggregateRating\",\n    \"ratingValue\": \"4.8\",\n    \"reviewCount\": \"156\"\n  },\n  \"review\": [{\n    \"@type\": \"Review\",\n    \"reviewRating\": {\n      \"@type\": \"Rating\",\n      \"ratingValue\": \"5\"\n    },\n    \"author\": {\n      \"@type\": \"Person\",\n      \"name\": \"李四\"\n    },\n    \"reviewBody\": \"非常好用的模板，节省了大量开发时间！\"\n  }]\n}\n",[2076],{"type":24,"tag":52,"props":2077,"children":2078},{"__ignoreMap":7},[2079],{"type":29,"value":2074},{"type":24,"tag":36,"props":2081,"children":2082},{},[2083],{"type":24,"tag":142,"props":2084,"children":2085},{},[2086],{"type":29,"value":2087},"产品可用性选项：",{"type":24,"tag":47,"props":2089,"children":2092},{"className":2090,"code":2091,"language":70,"meta":7},[72],"// 常用的 availability 值\nconst availabilityOptions = {\n  inStock: \"https://schema.org/InStock\",           // 有货\n  outOfStock: \"https://schema.org/OutOfStock\",     // 缺货\n  preOrder: \"https://schema.org/PreOrder\",         // 预购\n  backOrder: \"https://schema.org/BackOrder\",       // 补货中\n  discontinued: \"https://schema.org/Discontinued\", // 已停产\n  limitedAvailability: \"https://schema.org/LimitedAvailability\" // 限量\n};\n",[2093],{"type":24,"tag":52,"props":2094,"children":2095},{"__ignoreMap":7},[2096],{"type":29,"value":2091},{"type":24,"tag":62,"props":2098,"children":2100},{"id":2099},"_3-faqpage常见问题",[2101],{"type":29,"value":2102},"3. FAQPage（常见问题）",{"type":24,"tag":36,"props":2104,"children":2105},{},[2106],{"type":29,"value":2107},"适用于 FAQ 页面、产品问答等。",{"type":24,"tag":47,"props":2109,"children":2112},{"className":2110,"code":2111,"language":1915,"meta":7},[1913],"{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"FAQPage\",\n  \"mainEntity\": [{\n    \"@type\": \"Question\",\n    \"name\": \"HTMLPAGE 支持哪些浏览器？\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"HTMLPAGE 支持所有现代浏览器，包括 Chrome、Firefox、Safari、Edge 的最新两个版本，以及 iOS Safari 和 Android Chrome。\"\n    }\n  }, {\n    \"@type\": \"Question\",\n    \"name\": \"如何导出我的网站？\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"在编辑器右上角点击「导出」按钮，选择导出格式（HTML/ZIP），即可下载完整的网站文件。\"\n    }\n  }, {\n    \"@type\": \"Question\",\n    \"name\": \"支持自定义域名吗？\",\n    \"acceptedAnswer\": {\n      \"@type\": \"Answer\",\n      \"text\": \"支持！在项目设置中添加你的域名，按照指引配置 DNS 解析即可。专业版支持无限自定义域名。\"\n    }\n  }]\n}\n",[2113],{"type":24,"tag":52,"props":2114,"children":2115},{"__ignoreMap":7},[2116],{"type":29,"value":2111},{"type":24,"tag":62,"props":2118,"children":2120},{"id":2119},"_4-breadcrumblist面包屑",[2121],{"type":29,"value":2122},"4. BreadcrumbList（面包屑）",{"type":24,"tag":36,"props":2124,"children":2125},{},[2126],{"type":29,"value":2127},"帮助搜索引擎理解页面在网站中的层级位置。",{"type":24,"tag":47,"props":2129,"children":2132},{"className":2130,"code":2131,"language":1915,"meta":7},[1913],"{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"BreadcrumbList\",\n  \"itemListElement\": [{\n    \"@type\": \"ListItem\",\n    \"position\": 1,\n    \"name\": \"首页\",\n    \"item\": \"https://example.com\"\n  }, {\n    \"@type\": \"ListItem\",\n    \"position\": 2,\n    \"name\": \"前端开发\",\n    \"item\": \"https://example.com/frontend\"\n  }, {\n    \"@type\": \"ListItem\",\n    \"position\": 3,\n    \"name\": \"Vue 3 教程\",\n    \"item\": \"https://example.com/frontend/vue3\"\n  }, {\n    \"@type\": \"ListItem\",\n    \"position\": 4,\n    \"name\": \"响应式系统深度解析\"\n  }]\n}\n",[2133],{"type":24,"tag":52,"props":2134,"children":2135},{"__ignoreMap":7},[2136],{"type":29,"value":2131},{"type":24,"tag":62,"props":2138,"children":2140},{"id":2139},"_5-organization组织",[2141],{"type":29,"value":2142},"5. Organization（组织）",{"type":24,"tag":36,"props":2144,"children":2145},{},[2146],{"type":29,"value":2147},"适用于企业官网、关于我们页面。",{"type":24,"tag":47,"props":2149,"children":2152},{"className":2150,"code":2151,"language":1915,"meta":7},[1913],"{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"Organization\",\n  \"name\": \"HTMLPAGE\",\n  \"alternateName\": \"HTMLPAGE 在线建站平台\",\n  \"url\": \"https://htmlpage.cn\",\n  \"logo\": \"https://htmlpage.cn/logo.png\",\n  \"sameAs\": [\n    \"https://github.com/htmlpage\",\n    \"https://twitter.com/htmlpage\",\n    \"https://weibo.com/htmlpage\"\n  ],\n  \"contactPoint\": [{\n    \"@type\": \"ContactPoint\",\n    \"telephone\": \"+86-400-123-4567\",\n    \"contactType\": \"customer service\",\n    \"availableLanguage\": [\"Chinese\", \"English\"]\n  }],\n  \"address\": {\n    \"@type\": \"PostalAddress\",\n    \"streetAddress\": \"科技园路100号\",\n    \"addressLocality\": \"深圳市\",\n    \"addressRegion\": \"广东省\",\n    \"postalCode\": \"518000\",\n    \"addressCountry\": \"CN\"\n  }\n}\n",[2153],{"type":24,"tag":52,"props":2154,"children":2155},{"__ignoreMap":7},[2156],{"type":29,"value":2151},{"type":24,"tag":62,"props":2158,"children":2160},{"id":2159},"_6-website网站-站内搜索",[2161],{"type":29,"value":2162},"6. WebSite（网站）+ 站内搜索",{"type":24,"tag":36,"props":2164,"children":2165},{},[2166],{"type":29,"value":2167},"启用搜索框功能，让用户直接在搜索结果中搜索你的网站。",{"type":24,"tag":47,"props":2169,"children":2172},{"className":2170,"code":2171,"language":1915,"meta":7},[1913],"{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"WebSite\",\n  \"name\": \"HTMLPAGE\",\n  \"url\": \"https://htmlpage.cn\",\n  \"potentialAction\": {\n    \"@type\": \"SearchAction\",\n    \"target\": {\n      \"@type\": \"EntryPoint\",\n      \"urlTemplate\": \"https://htmlpage.cn/search?q={search_term_string}\"\n    },\n    \"query-input\": \"required name=search_term_string\"\n  }\n}\n",[2173],{"type":24,"tag":52,"props":2174,"children":2175},{"__ignoreMap":7},[2176],{"type":29,"value":2171},{"type":24,"tag":25,"props":2178,"children":2180},{"id":2179},"在现代框架中实现结构化数据",[2181],{"type":29,"value":2179},{"type":24,"tag":62,"props":2183,"children":2185},{"id":2184},"nuxt-3-实现方案",[2186],{"type":29,"value":2187},"Nuxt 3 实现方案",{"type":24,"tag":36,"props":2189,"children":2190},{},[2191],{"type":24,"tag":142,"props":2192,"children":2193},{},[2194],{"type":29,"value":2195},"方案 1：使用 useHead 组合式函数",{"type":24,"tag":47,"props":2197,"children":2202},{"className":2198,"code":2200,"language":2201,"meta":7},[2199],"language-typescript","// composables/useStructuredData.ts\nexport function useStructuredData(data: Record\u003Cstring, unknown>) {\n  useHead({\n    script: [\n      {\n        type: 'application/ld+json',\n        innerHTML: JSON.stringify({\n          '@context': 'https://schema.org',\n          ...data\n        })\n      }\n    ]\n  })\n}\n\n// 在页面中使用\n// pages/articles/[slug].vue\n\u003Cscript setup lang=\"ts\">\nconst { data: article } = await useFetch(`/api/articles/${route.params.slug}`)\n\nuseStructuredData({\n  '@type': 'Article',\n  headline: article.value.title,\n  description: article.value.description,\n  image: article.value.coverImage,\n  datePublished: article.value.publishedAt,\n  dateModified: article.value.updatedAt,\n  author: {\n    '@type': 'Person',\n    name: article.value.author.name,\n    url: article.value.author.url\n  },\n  publisher: {\n    '@type': 'Organization',\n    name: 'HTMLPAGE',\n    logo: {\n      '@type': 'ImageObject',\n      url: 'https://htmlpage.cn/logo.png'\n    }\n  }\n})\n\u003C/script>\n","typescript",[2203],{"type":24,"tag":52,"props":2204,"children":2205},{"__ignoreMap":7},[2206],{"type":29,"value":2200},{"type":24,"tag":36,"props":2208,"children":2209},{},[2210],{"type":24,"tag":142,"props":2211,"children":2212},{},[2213],{"type":29,"value":2214},"方案 2：使用 Nuxt SEO 模块",{"type":24,"tag":47,"props":2216,"children":2221},{"className":2217,"code":2219,"language":2220,"meta":7},[2218],"language-bash","# 安装\nnpx nuxi module add @nuxtjs/seo\n","bash",[2222],{"type":24,"tag":52,"props":2223,"children":2224},{"__ignoreMap":7},[2225],{"type":29,"value":2219},{"type":24,"tag":47,"props":2227,"children":2230},{"className":2228,"code":2229,"language":2201,"meta":7},[2199],"// nuxt.config.ts\nexport default defineNuxtConfig({\n  modules: ['@nuxtjs/seo'],\n  \n  site: {\n    url: 'https://htmlpage.cn',\n    name: 'HTMLPAGE',\n    description: '专业的在线建站平台'\n  },\n  \n  schemaOrg: {\n    identity: {\n      type: 'Organization',\n      name: 'HTMLPAGE',\n      url: 'https://htmlpage.cn',\n      logo: 'https://htmlpage.cn/logo.png'\n    }\n  }\n})\n",[2231],{"type":24,"tag":52,"props":2232,"children":2233},{"__ignoreMap":7},[2234],{"type":29,"value":2229},{"type":24,"tag":47,"props":2236,"children":2241},{"className":2237,"code":2239,"language":2240,"meta":7},[2238],"language-vue","\u003C!-- pages/articles/[slug].vue -->\n\u003Cscript setup lang=\"ts\">\nimport { useSchemaOrg, defineArticle, defineBreadcrumb } from '@unhead/schema-org/vue'\n\nconst article = await $fetch(`/api/articles/${route.params.slug}`)\n\nuseSchemaOrg([\n  defineArticle({\n    headline: article.title,\n    description: article.description,\n    image: article.coverImage,\n    datePublished: article.publishedAt,\n    dateModified: article.updatedAt,\n    author: {\n      name: article.author.name,\n      url: article.author.url\n    }\n  }),\n  defineBreadcrumb({\n    itemListElement: [\n      { name: '首页', item: '/' },\n      { name: '文章', item: '/articles' },\n      { name: article.title }\n    ]\n  })\n])\n\u003C/script>\n","vue",[2242],{"type":24,"tag":52,"props":2243,"children":2244},{"__ignoreMap":7},[2245],{"type":29,"value":2239},{"type":24,"tag":62,"props":2247,"children":2249},{"id":2248},"nextjs-实现方案",[2250],{"type":29,"value":2251},"Next.js 实现方案",{"type":24,"tag":36,"props":2253,"children":2254},{},[2255],{"type":24,"tag":142,"props":2256,"children":2257},{},[2258],{"type":29,"value":2259},"方案 1：直接在页面中添加 JSON-LD",{"type":24,"tag":47,"props":2261,"children":2266},{"className":2262,"code":2264,"language":2265,"meta":7},[2263],"language-tsx","// app/articles/[slug]/page.tsx\nimport { Metadata } from 'next'\n\ntype Props = {\n  params: { slug: string }\n}\n\nasync function getArticle(slug: string) {\n  const res = await fetch(`https://api.example.com/articles/${slug}`)\n  return res.json()\n}\n\n// 生成元数据\nexport async function generateMetadata({ params }: Props): Promise\u003CMetadata> {\n  const article = await getArticle(params.slug)\n  \n  return {\n    title: article.title,\n    description: article.description,\n    openGraph: {\n      title: article.title,\n      description: article.description,\n      images: [article.coverImage]\n    }\n  }\n}\n\n// 页面组件\nexport default async function ArticlePage({ params }: Props) {\n  const article = await getArticle(params.slug)\n  \n  const jsonLd = {\n    '@context': 'https://schema.org',\n    '@type': 'Article',\n    headline: article.title,\n    description: article.description,\n    image: article.coverImage,\n    datePublished: article.publishedAt,\n    dateModified: article.updatedAt,\n    author: {\n      '@type': 'Person',\n      name: article.author.name,\n      url: article.author.url\n    },\n    publisher: {\n      '@type': 'Organization',\n      name: 'HTMLPAGE',\n      logo: {\n        '@type': 'ImageObject',\n        url: 'https://htmlpage.cn/logo.png'\n      }\n    }\n  }\n  \n  return (\n    \u003C>\n      \u003Cscript\n        type=\"application/ld+json\"\n        dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }}\n      />\n      \u003Carticle>\n        \u003Ch1>{article.title}\u003C/h1>\n        {/* 文章内容 */}\n      \u003C/article>\n    \u003C/>\n  )\n}\n","tsx",[2267],{"type":24,"tag":52,"props":2268,"children":2269},{"__ignoreMap":7},[2270],{"type":29,"value":2264},{"type":24,"tag":36,"props":2272,"children":2273},{},[2274],{"type":24,"tag":142,"props":2275,"children":2276},{},[2277],{"type":29,"value":2278},"方案 2：使用 next-seo 库",{"type":24,"tag":47,"props":2280,"children":2283},{"className":2281,"code":2282,"language":2220,"meta":7},[2218],"npm install next-seo\n",[2284],{"type":24,"tag":52,"props":2285,"children":2286},{"__ignoreMap":7},[2287],{"type":29,"value":2282},{"type":24,"tag":47,"props":2289,"children":2292},{"className":2290,"code":2291,"language":2265,"meta":7},[2263],"// app/articles/[slug]/page.tsx\nimport { ArticleJsonLd, BreadcrumbJsonLd } from 'next-seo'\n\nexport default async function ArticlePage({ params }: Props) {\n  const article = await getArticle(params.slug)\n  \n  return (\n    \u003C>\n      \u003CArticleJsonLd\n        type=\"Article\"\n        url={`https://example.com/articles/${params.slug}`}\n        title={article.title}\n        images={[article.coverImage]}\n        datePublished={article.publishedAt}\n        dateModified={article.updatedAt}\n        authorName={article.author.name}\n        publisherName=\"HTMLPAGE\"\n        publisherLogo=\"https://htmlpage.cn/logo.png\"\n        description={article.description}\n      />\n      \n      \u003CBreadcrumbJsonLd\n        itemListElements={[\n          { position: 1, name: '首页', item: 'https://example.com' },\n          { position: 2, name: '文章', item: 'https://example.com/articles' },\n          { position: 3, name: article.title }\n        ]}\n      />\n      \n      \u003Carticle>\n        \u003Ch1>{article.title}\u003C/h1>\n        {/* 文章内容 */}\n      \u003C/article>\n    \u003C/>\n  )\n}\n",[2293],{"type":24,"tag":52,"props":2294,"children":2295},{"__ignoreMap":7},[2296],{"type":29,"value":2291},{"type":24,"tag":25,"props":2298,"children":2300},{"id":2299},"验证与调试工具",[2301],{"type":29,"value":2299},{"type":24,"tag":62,"props":2303,"children":2305},{"id":2304},"google-rich-results-test",[2306],{"type":29,"value":2307},"Google Rich Results Test",{"type":24,"tag":36,"props":2309,"children":2310},{},[2311,2313],{"type":29,"value":2312},"最权威的验证工具：",{"type":24,"tag":608,"props":2314,"children":2317},{"href":2315,"rel":2316},"https://search.google.com/test/rich-results",[612],[2318],{"type":29,"value":2315},{"type":24,"tag":47,"props":2320,"children":2323},{"className":2321,"code":2322,"language":70,"meta":7},[72],"// 快速验证脚本：在控制台检查页面的结构化数据\n(function() {\n  const scripts = document.querySelectorAll('script[type=\"application/ld+json\"]');\n  scripts.forEach((script, index) => {\n    try {\n      const data = JSON.parse(script.textContent);\n      console.log(`结构化数据 #${index + 1}:`, data);\n    } catch (e) {\n      console.error(`结构化数据 #${index + 1} 解析错误:`, e);\n    }\n  });\n})();\n",[2324],{"type":24,"tag":52,"props":2325,"children":2326},{"__ignoreMap":7},[2327],{"type":29,"value":2322},{"type":24,"tag":62,"props":2329,"children":2331},{"id":2330},"schema-markup-validator",[2332],{"type":29,"value":2333},"Schema Markup Validator",{"type":24,"tag":36,"props":2335,"children":2336},{},[2337,2339],{"type":29,"value":2338},"Schema.org 官方验证器：",{"type":24,"tag":608,"props":2340,"children":2343},{"href":2341,"rel":2342},"https://validator.schema.org/",[612],[2344],{"type":29,"value":2341},{"type":24,"tag":62,"props":2346,"children":2348},{"id":2347},"常见错误与修复",[2349],{"type":29,"value":2347},{"type":24,"tag":103,"props":2351,"children":2352},{},[2353,2374],{"type":24,"tag":107,"props":2354,"children":2355},{},[2356],{"type":24,"tag":111,"props":2357,"children":2358},{},[2359,2364,2369],{"type":24,"tag":115,"props":2360,"children":2361},{},[2362],{"type":29,"value":2363},"错误类型",{"type":24,"tag":115,"props":2365,"children":2366},{},[2367],{"type":29,"value":2368},"原因",{"type":24,"tag":115,"props":2370,"children":2371},{},[2372],{"type":29,"value":2373},"解决方案",{"type":24,"tag":131,"props":2375,"children":2376},{},[2377,2395,2413,2431],{"type":24,"tag":111,"props":2378,"children":2379},{},[2380,2385,2390],{"type":24,"tag":138,"props":2381,"children":2382},{},[2383],{"type":29,"value":2384},"Missing field",{"type":24,"tag":138,"props":2386,"children":2387},{},[2388],{"type":29,"value":2389},"必需字段缺失",{"type":24,"tag":138,"props":2391,"children":2392},{},[2393],{"type":29,"value":2394},"添加缺失字段",{"type":24,"tag":111,"props":2396,"children":2397},{},[2398,2403,2408],{"type":24,"tag":138,"props":2399,"children":2400},{},[2401],{"type":29,"value":2402},"Invalid value",{"type":24,"tag":138,"props":2404,"children":2405},{},[2406],{"type":29,"value":2407},"值格式不正确",{"type":24,"tag":138,"props":2409,"children":2410},{},[2411],{"type":29,"value":2412},"检查日期、URL 格式",{"type":24,"tag":111,"props":2414,"children":2415},{},[2416,2421,2426],{"type":24,"tag":138,"props":2417,"children":2418},{},[2419],{"type":29,"value":2420},"Duplicate",{"type":24,"tag":138,"props":2422,"children":2423},{},[2424],{"type":29,"value":2425},"同一页面重复定义",{"type":24,"tag":138,"props":2427,"children":2428},{},[2429],{"type":29,"value":2430},"合并或删除重复项",{"type":24,"tag":111,"props":2432,"children":2433},{},[2434,2439,2444],{"type":24,"tag":138,"props":2435,"children":2436},{},[2437],{"type":29,"value":2438},"Invalid JSON",{"type":24,"tag":138,"props":2440,"children":2441},{},[2442],{"type":29,"value":2443},"JSON 语法错误",{"type":24,"tag":138,"props":2445,"children":2446},{},[2447],{"type":29,"value":2448},"使用 JSON 验证器检查",{"type":24,"tag":36,"props":2450,"children":2451},{},[2452],{"type":24,"tag":142,"props":2453,"children":2454},{},[2455],{"type":29,"value":2456},"日期格式正确写法：",{"type":24,"tag":47,"props":2458,"children":2461},{"className":2459,"code":2460,"language":70,"meta":7},[72],"// ✅ 正确的 ISO 8601 格式\nconst correctFormats = [\n  \"2026-01-15\",                    // 仅日期\n  \"2026-01-15T08:00:00\",           // 日期+时间\n  \"2026-01-15T08:00:00+08:00\",     // 带时区\n  \"2026-01-15T08:00:00Z\"           // UTC 时间\n];\n\n// ❌ 错误格式\nconst wrongFormats = [\n  \"2026/01/15\",         // 斜杠分隔\n  \"15-01-2026\",         // 日期顺序错误\n  \"Jan 15, 2026\"        // 非 ISO 格式\n];\n",[2462],{"type":24,"tag":52,"props":2463,"children":2464},{"__ignoreMap":7},[2465],{"type":29,"value":2460},{"type":24,"tag":25,"props":2467,"children":2469},{"id":2468},"高级技巧与最佳实践",[2470],{"type":29,"value":2468},{"type":24,"tag":62,"props":2472,"children":2474},{"id":2473},"_1-多类型组合",[2475],{"type":29,"value":2476},"1. 多类型组合",{"type":24,"tag":36,"props":2478,"children":2479},{},[2480],{"type":29,"value":2481},"一个页面可以包含多个结构化数据类型：",{"type":24,"tag":47,"props":2483,"children":2486},{"className":2484,"code":2485,"language":1915,"meta":7},[1913],"[\n  {\n    \"@context\": \"https://schema.org\",\n    \"@type\": \"WebPage\",\n    \"name\": \"Vue 3 响应式系统深度解析\",\n    \"description\": \"...\",\n    \"breadcrumb\": {\n      \"@type\": \"BreadcrumbList\",\n      \"itemListElement\": [...]\n    }\n  },\n  {\n    \"@context\": \"https://schema.org\",\n    \"@type\": \"Article\",\n    \"headline\": \"Vue 3 响应式系统深度解析\",\n    ...\n  }\n]\n",[2487],{"type":24,"tag":52,"props":2488,"children":2489},{"__ignoreMap":7},[2490],{"type":29,"value":2485},{"type":24,"tag":62,"props":2492,"children":2494},{"id":2493},"_2-动态生成结构化数据",[2495],{"type":29,"value":2496},"2. 动态生成结构化数据",{"type":24,"tag":47,"props":2498,"children":2501},{"className":2499,"code":2500,"language":2201,"meta":7},[2199],"// utils/structuredData.ts\nexport function generateArticleSchema(article: Article) {\n  return {\n    '@context': 'https://schema.org',\n    '@type': 'Article',\n    headline: article.title,\n    description: article.excerpt,\n    image: article.images.map(img => ({\n      '@type': 'ImageObject',\n      url: img.url,\n      width: img.width,\n      height: img.height\n    })),\n    datePublished: new Date(article.createdAt).toISOString(),\n    dateModified: new Date(article.updatedAt).toISOString(),\n    author: article.authors.map(author => ({\n      '@type': 'Person',\n      name: author.name,\n      url: author.profileUrl\n    })),\n    publisher: {\n      '@type': 'Organization',\n      name: 'HTMLPAGE',\n      logo: {\n        '@type': 'ImageObject',\n        url: 'https://htmlpage.cn/logo.png',\n        width: 200,\n        height: 60\n      }\n    },\n    mainEntityOfPage: {\n      '@type': 'WebPage',\n      '@id': article.canonicalUrl\n    },\n    wordCount: article.content.split(/\\s+/).length,\n    articleSection: article.category,\n    keywords: article.tags.join(', ')\n  }\n}\n",[2502],{"type":24,"tag":52,"props":2503,"children":2504},{"__ignoreMap":7},[2505],{"type":29,"value":2500},{"type":24,"tag":62,"props":2507,"children":2509},{"id":2508},"_3-seo-检查清单",[2510],{"type":29,"value":2511},"3. SEO 检查清单",{"type":24,"tag":47,"props":2513,"children":2517},{"className":2514,"code":2516,"language":679,"meta":7},[2515],"language-markdown","## 发布前结构化数据检查\n\n### 必须检查\n- [ ] 使用 Rich Results Test 验证无错误\n- [ ] 所有必需字段都已填写\n- [ ] 日期使用 ISO 8601 格式\n- [ ] 图片 URL 可访问且 HTTPS\n- [ ] @type 值拼写正确\n\n### 推荐检查\n- [ ] 提供多种图片比例（1:1, 4:3, 16:9）\n- [ ] 文章包含 author 和 publisher\n- [ ] 产品包含 offers 和 aggregateRating\n- [ ] FAQ 至少包含 3 个问答\n\n### 高级检查\n- [ ] 使用 Schema.org 官方验证器二次确认\n- [ ] 在 Google Search Console 监控结构化数据报告\n- [ ] 检查移动端页面的结构化数据是否一致\n",[2518],{"type":24,"tag":52,"props":2519,"children":2520},{"__ignoreMap":7},[2521],{"type":29,"value":2516},{"type":24,"tag":25,"props":2523,"children":2524},{"id":532},[2525],{"type":29,"value":532},{"type":24,"tag":36,"props":2527,"children":2528},{},[2529],{"type":29,"value":2530},"结构化数据是现代 SEO 的核心技术之一。通过正确实现 Schema.org 标记，你的网站可以在搜索结果中获得更丰富的展示效果，显著提升点击率和用户信任度。",{"type":24,"tag":62,"props":2532,"children":2534},{"id":2533},"关键要点回顾",[2535],{"type":29,"value":2533},{"type":24,"tag":601,"props":2537,"children":2538},{},[2539,2551,2562,2573,2584],{"type":24,"tag":545,"props":2540,"children":2541},{},[2542,2544,2549],{"type":29,"value":2543},"✅ ",{"type":24,"tag":142,"props":2545,"children":2546},{},[2547],{"type":29,"value":2548},"选择 JSON-LD 格式",{"type":29,"value":2550},"：与 HTML 分离，易于维护和调试",{"type":24,"tag":545,"props":2552,"children":2553},{},[2554,2555,2560],{"type":29,"value":2543},{"type":24,"tag":142,"props":2556,"children":2557},{},[2558],{"type":29,"value":2559},"覆盖主要内容类型",{"type":29,"value":2561},"：Article、Product、FAQ、BreadcrumbList、Organization",{"type":24,"tag":545,"props":2563,"children":2564},{},[2565,2566,2571],{"type":29,"value":2543},{"type":24,"tag":142,"props":2567,"children":2568},{},[2569],{"type":29,"value":2570},"框架集成",{"type":29,"value":2572},"：Nuxt 使用 useHead 或 @nuxtjs/seo，Next.js 使用 next-seo",{"type":24,"tag":545,"props":2574,"children":2575},{},[2576,2577,2582],{"type":29,"value":2543},{"type":24,"tag":142,"props":2578,"children":2579},{},[2580],{"type":29,"value":2581},"持续验证",{"type":29,"value":2583},"：使用 Google Rich Results Test 确保无错误",{"type":24,"tag":545,"props":2585,"children":2586},{},[2587,2588,2593],{"type":29,"value":2543},{"type":24,"tag":142,"props":2589,"children":2590},{},[2591],{"type":29,"value":2592},"监控效果",{"type":29,"value":2594},"：通过 Search Console 跟踪 Rich Results 展示情况",{"type":24,"tag":62,"props":2596,"children":2598},{"id":2597},"立即行动",[2599],{"type":29,"value":2597},{"type":24,"tag":541,"props":2601,"children":2602},{},[2603,2608,2613,2618],{"type":24,"tag":545,"props":2604,"children":2605},{},[2606],{"type":29,"value":2607},"审查你的网站，确定需要添加结构化数据的页面类型",{"type":24,"tag":545,"props":2609,"children":2610},{},[2611],{"type":29,"value":2612},"从最重要的页面开始实施（首页、产品页、文章页）",{"type":24,"tag":545,"props":2614,"children":2615},{},[2616],{"type":29,"value":2617},"使用验证工具确保实现正确",{"type":24,"tag":545,"props":2619,"children":2620},{},[2621],{"type":29,"value":2622},"在 Search Console 中监控效果",{"type":24,"tag":25,"props":2624,"children":2626},{"id":2625},"相关资源",[2627],{"type":29,"value":2625},{"type":24,"tag":601,"props":2629,"children":2630},{},[2631,2641,2651,2660,2668],{"type":24,"tag":545,"props":2632,"children":2633},{},[2634],{"type":24,"tag":608,"props":2635,"children":2638},{"href":2636,"rel":2637},"https://schema.org/",[612],[2639],{"type":29,"value":2640},"Schema.org 官方文档",{"type":24,"tag":545,"props":2642,"children":2643},{},[2644],{"type":24,"tag":608,"props":2645,"children":2648},{"href":2646,"rel":2647},"https://developers.google.com/search/docs/appearance/structured-data",[612],[2649],{"type":29,"value":2650},"Google 结构化数据指南",{"type":24,"tag":545,"props":2652,"children":2653},{},[2654],{"type":24,"tag":608,"props":2655,"children":2657},{"href":2315,"rel":2656},[612],[2658],{"type":29,"value":2659},"Rich Results Test",{"type":24,"tag":545,"props":2661,"children":2662},{},[2663],{"type":24,"tag":608,"props":2664,"children":2666},{"href":2341,"rel":2665},[612],[2667],{"type":29,"value":2333},{"type":24,"tag":545,"props":2669,"children":2670},{},[2671],{"type":24,"tag":608,"props":2672,"children":2675},{"href":2673,"rel":2674},"https://search.google.com/search-console",[612],[2676],{"type":29,"value":2677},"Google Search Console 结构化数据报告",{"title":7,"searchDepth":647,"depth":647,"links":2679},[2680,2681,2684,2688,2696,2700,2705,2710,2714],{"id":1629,"depth":650,"text":1632},{"id":1635,"depth":650,"text":1638,"children":2682},[2683],{"id":1651,"depth":647,"text":1654},{"id":1821,"depth":650,"text":1824,"children":2685},[2686,2687],{"id":1827,"depth":647,"text":1830},{"id":1844,"depth":647,"text":1844},{"id":1896,"depth":650,"text":1896,"children":2689},[2690,2691,2692,2693,2694,2695],{"id":1901,"depth":647,"text":1904},{"id":2062,"depth":647,"text":2065},{"id":2099,"depth":647,"text":2102},{"id":2119,"depth":647,"text":2122},{"id":2139,"depth":647,"text":2142},{"id":2159,"depth":647,"text":2162},{"id":2179,"depth":650,"text":2179,"children":2697},[2698,2699],{"id":2184,"depth":647,"text":2187},{"id":2248,"depth":647,"text":2251},{"id":2299,"depth":650,"text":2299,"children":2701},[2702,2703,2704],{"id":2304,"depth":647,"text":2307},{"id":2330,"depth":647,"text":2333},{"id":2347,"depth":647,"text":2347},{"id":2468,"depth":650,"text":2468,"children":2706},[2707,2708,2709],{"id":2473,"depth":647,"text":2476},{"id":2493,"depth":647,"text":2496},{"id":2508,"depth":647,"text":2511},{"id":532,"depth":650,"text":532,"children":2711},[2712,2713],{"id":2533,"depth":647,"text":2533},{"id":2597,"depth":647,"text":2597},{"id":2625,"depth":650,"text":2625},"content:topics:seo:schema-org-structured-data-guide.md","topics/seo/schema-org-structured-data-guide.md","topics/seo/schema-org-structured-data-guide",{"_path":2719,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":2720,"description":2721,"date":2722,"topic":5,"author":11,"tags":2723,"image":2727,"featured":18,"readingTime":2728,"body":2729,"_type":679,"_id":5427,"_source":681,"_file":5428,"_stem":5429,"_extension":684},"/topics/seo/google-search-console-guide","Google Search Console 完全指南 - 从入门到精通的站长工具使用手册","深入讲解 Google Search Console 的核心功能与实战应用，包括网站验证、性能报告解读、索引问题排查、搜索优化策略。帮助站长全面掌握这一免费但强大的 SEO 工具。","2025-12-24",[230,2724,2725,2726],"SEO工具","网站优化","搜索分析","/images/topics/google-search-console.jpg",15,{"type":21,"children":2730,"toc":5390},[2731,2737,2741,2746,2751,2757,2763,2768,2776,2781,2789,2794,2802,2807,2815,2820,2826,2831,2962,2972,2978,2984,3008,3014,3019,3027,3032,3076,3081,3089,3094,3107,3112,3122,3140,3146,3151,3159,3167,3175,3183,3191,3204,3213,3221,3226,3234,3239,3244,3252,3279,3287,3305,3313,3331,3336,3341,3347,3352,3360,3471,3479,3484,3489,3512,3521,3539,3548,3566,3574,3579,3587,3605,3613,3631,3639,3657,3665,3683,3691,3709,3717,3735,3741,3746,3754,3772,3780,3798,3806,3819,3827,3835,3843,3851,3859,3867,3875,3881,3886,3894,3912,3920,3938,3946,3964,3972,3989,3997,4112,4118,4123,4131,4154,4162,4173,4182,4205,4213,4286,4292,4297,4305,4402,4411,4417,4422,4430,4529,4537,4542,4575,4583,4601,4606,4612,4617,4626,4649,4658,4676,4682,4687,4696,4714,4719,4737,4743,4748,4757,4775,4784,4802,4808,4813,4822,4840,4849,4867,4873,4878,4887,4905,4914,4932,4937,4943,4948,4957,4980,4989,5007,5013,5018,5027,5050,5055,5065,5075,5085,5095,5105,5110,5115,5123,5154,5162,5193,5201,5232,5239,5270,5274,5279,5288,5340,5352,5357],{"type":24,"tag":25,"props":2732,"children":2734},{"id":2733},"google-search-console-完全指南",[2735],{"type":29,"value":2736},"Google Search Console 完全指南",{"type":24,"tag":25,"props":2738,"children":2739},{"id":32},[2740],{"type":29,"value":32},{"type":24,"tag":36,"props":2742,"children":2743},{},[2744],{"type":29,"value":2745},"Google Search Console（简称 GSC，原名 Google Webmaster Tools）是 Google 官方提供的免费网站管理工具。对于任何关注 SEO 的网站来说，GSC 都是不可或缺的工具——它直接来自 Google，提供了搜索引擎如何看待你网站的第一手数据。",{"type":24,"tag":36,"props":2747,"children":2748},{},[2749],{"type":29,"value":2750},"本指南将从基础设置到高级应用，全面讲解如何利用 GSC 提升网站的搜索表现。无论你是刚接触 SEO 的新手，还是经验丰富的站长，都能从中获得实用的知识。",{"type":24,"tag":25,"props":2752,"children":2754},{"id":2753},"为什么-google-search-console-如此重要",[2755],{"type":29,"value":2756},"为什么 Google Search Console 如此重要",{"type":24,"tag":62,"props":2758,"children":2760},{"id":2759},"gsc-能告诉你什么",[2761],{"type":29,"value":2762},"GSC 能告诉你什么",{"type":24,"tag":36,"props":2764,"children":2765},{},[2766],{"type":29,"value":2767},"在深入功能之前，让我们先理解为什么每个网站都需要使用 GSC：",{"type":24,"tag":36,"props":2769,"children":2770},{},[2771],{"type":24,"tag":142,"props":2772,"children":2773},{},[2774],{"type":29,"value":2775},"1. 直接来自 Google 的数据",{"type":24,"tag":36,"props":2777,"children":2778},{},[2779],{"type":29,"value":2780},"与第三方 SEO 工具不同，GSC 的数据直接来自 Google 的搜索系统。这意味着你看到的是真实的搜索查询、真实的排名位置、真实的点击数据——没有任何估算或模拟。",{"type":24,"tag":36,"props":2782,"children":2783},{},[2784],{"type":24,"tag":142,"props":2785,"children":2786},{},[2787],{"type":29,"value":2788},"2. 免费且功能强大",{"type":24,"tag":36,"props":2790,"children":2791},{},[2792],{"type":29,"value":2793},"许多付费 SEO 工具提供的功能，GSC 免费就能实现。对于预算有限的个人站长或小企业来说，这是最具性价比的选择。",{"type":24,"tag":36,"props":2795,"children":2796},{},[2797],{"type":24,"tag":142,"props":2798,"children":2799},{},[2800],{"type":29,"value":2801},"3. 问题早期预警",{"type":24,"tag":36,"props":2803,"children":2804},{},[2805],{"type":29,"value":2806},"当网站出现技术问题（如爬取错误、安全问题、手动处罚）时，GSC 会第一时间通知你。很多严重问题如果不及时处理，可能导致网站从搜索结果中消失。",{"type":24,"tag":36,"props":2808,"children":2809},{},[2810],{"type":24,"tag":142,"props":2811,"children":2812},{},[2813],{"type":29,"value":2814},"4. 优化决策的数据基础",{"type":24,"tag":36,"props":2816,"children":2817},{},[2818],{"type":29,"value":2819},"没有数据就没有优化。GSC 告诉你哪些关键词带来流量、哪些页面表现最好、用户从哪里来——这些都是制定 SEO 策略的基础。",{"type":24,"tag":62,"props":2821,"children":2823},{"id":2822},"gsc-与-google-analytics-的区别",[2824],{"type":29,"value":2825},"GSC 与 Google Analytics 的区别",{"type":24,"tag":36,"props":2827,"children":2828},{},[2829],{"type":29,"value":2830},"很多人混淆这两个工具，但它们的定位完全不同：",{"type":24,"tag":103,"props":2832,"children":2833},{},[2834,2854],{"type":24,"tag":107,"props":2835,"children":2836},{},[2837],{"type":24,"tag":111,"props":2838,"children":2839},{},[2840,2845,2849],{"type":24,"tag":115,"props":2841,"children":2842},{},[2843],{"type":29,"value":2844},"维度",{"type":24,"tag":115,"props":2846,"children":2847},{},[2848],{"type":29,"value":230},{"type":24,"tag":115,"props":2850,"children":2851},{},[2852],{"type":29,"value":2853},"Google Analytics",{"type":24,"tag":131,"props":2855,"children":2856},{},[2857,2878,2899,2920,2941],{"type":24,"tag":111,"props":2858,"children":2859},{},[2860,2868,2873],{"type":24,"tag":138,"props":2861,"children":2862},{},[2863],{"type":24,"tag":142,"props":2864,"children":2865},{},[2866],{"type":29,"value":2867},"数据来源",{"type":24,"tag":138,"props":2869,"children":2870},{},[2871],{"type":29,"value":2872},"Google 搜索系统",{"type":24,"tag":138,"props":2874,"children":2875},{},[2876],{"type":29,"value":2877},"网站访问者行为",{"type":24,"tag":111,"props":2879,"children":2880},{},[2881,2889,2894],{"type":24,"tag":138,"props":2882,"children":2883},{},[2884],{"type":24,"tag":142,"props":2885,"children":2886},{},[2887],{"type":29,"value":2888},"核心功能",{"type":24,"tag":138,"props":2890,"children":2891},{},[2892],{"type":29,"value":2893},"搜索表现、索引状态、技术健康",{"type":24,"tag":138,"props":2895,"children":2896},{},[2897],{"type":29,"value":2898},"用户行为、转化、流量来源",{"type":24,"tag":111,"props":2900,"children":2901},{},[2902,2910,2915],{"type":24,"tag":138,"props":2903,"children":2904},{},[2905],{"type":24,"tag":142,"props":2906,"children":2907},{},[2908],{"type":29,"value":2909},"关注点",{"type":24,"tag":138,"props":2911,"children":2912},{},[2913],{"type":29,"value":2914},"用户到达前（搜索阶段）",{"type":24,"tag":138,"props":2916,"children":2917},{},[2918],{"type":29,"value":2919},"用户到达后（网站内行为）",{"type":24,"tag":111,"props":2921,"children":2922},{},[2923,2931,2936],{"type":24,"tag":138,"props":2924,"children":2925},{},[2926],{"type":24,"tag":142,"props":2927,"children":2928},{},[2929],{"type":29,"value":2930},"典型问题",{"type":24,"tag":138,"props":2932,"children":2933},{},[2934],{"type":29,"value":2935},"为什么没有排名？",{"type":24,"tag":138,"props":2937,"children":2938},{},[2939],{"type":29,"value":2940},"用户为什么离开？",{"type":24,"tag":111,"props":2942,"children":2943},{},[2944,2952,2957],{"type":24,"tag":138,"props":2945,"children":2946},{},[2947],{"type":24,"tag":142,"props":2948,"children":2949},{},[2950],{"type":29,"value":2951},"技术性",{"type":24,"tag":138,"props":2953,"children":2954},{},[2955],{"type":29,"value":2956},"侧重技术和搜索",{"type":24,"tag":138,"props":2958,"children":2959},{},[2960],{"type":29,"value":2961},"侧重营销和转化",{"type":24,"tag":36,"props":2963,"children":2964},{},[2965,2970],{"type":24,"tag":142,"props":2966,"children":2967},{},[2968],{"type":29,"value":2969},"最佳实践是同时使用两者",{"type":29,"value":2971},"：GSC 帮你获得搜索流量，GA 帮你理解和转化这些流量。",{"type":24,"tag":25,"props":2973,"children":2975},{"id":2974},"初始设置添加和验证网站",[2976],{"type":29,"value":2977},"初始设置：添加和验证网站",{"type":24,"tag":62,"props":2979,"children":2981},{"id":2980},"步骤一访问-google-search-console",[2982],{"type":29,"value":2983},"步骤一：访问 Google Search Console",{"type":24,"tag":541,"props":2985,"children":2986},{},[2987,2998,3003],{"type":24,"tag":545,"props":2988,"children":2989},{},[2990,2992],{"type":29,"value":2991},"前往 ",{"type":24,"tag":608,"props":2993,"children":2995},{"href":2673,"rel":2994},[612],[2996],{"type":29,"value":2997},"search.google.com/search-console",{"type":24,"tag":545,"props":2999,"children":3000},{},[3001],{"type":29,"value":3002},"使用 Google 账号登录（建议使用公司邮箱而非个人邮箱）",{"type":24,"tag":545,"props":3004,"children":3005},{},[3006],{"type":29,"value":3007},"点击\"添加资源\"",{"type":24,"tag":62,"props":3009,"children":3011},{"id":3010},"步骤二选择资源类型",[3012],{"type":29,"value":3013},"步骤二：选择资源类型",{"type":24,"tag":36,"props":3015,"children":3016},{},[3017],{"type":29,"value":3018},"GSC 提供两种资源类型，理解它们的区别很重要：",{"type":24,"tag":36,"props":3020,"children":3021},{},[3022],{"type":24,"tag":142,"props":3023,"children":3024},{},[3025],{"type":29,"value":3026},"网域资源（Domain Property）- 推荐",{"type":24,"tag":36,"props":3028,"children":3029},{},[3030],{"type":29,"value":3031},"覆盖域名下的所有子域和协议：",{"type":24,"tag":601,"props":3033,"children":3034},{},[3035,3044,3053,3062,3071],{"type":24,"tag":545,"props":3036,"children":3037},{},[3038],{"type":24,"tag":608,"props":3039,"children":3042},{"href":3040,"rel":3041},"https://example.com",[612],[3043],{"type":29,"value":3040},{"type":24,"tag":545,"props":3045,"children":3046},{},[3047],{"type":24,"tag":608,"props":3048,"children":3051},{"href":3049,"rel":3050},"http://example.com",[612],[3052],{"type":29,"value":3049},{"type":24,"tag":545,"props":3054,"children":3055},{},[3056],{"type":24,"tag":608,"props":3057,"children":3060},{"href":3058,"rel":3059},"https://www.example.com",[612],[3061],{"type":29,"value":3058},{"type":24,"tag":545,"props":3063,"children":3064},{},[3065],{"type":24,"tag":608,"props":3066,"children":3069},{"href":3067,"rel":3068},"https://blog.example.com",[612],[3070],{"type":29,"value":3067},{"type":24,"tag":545,"props":3072,"children":3073},{},[3074],{"type":29,"value":3075},"等等...",{"type":24,"tag":36,"props":3077,"children":3078},{},[3079],{"type":29,"value":3080},"优点：一站式管理所有变体，数据更完整。\n缺点：只能通过 DNS 验证。",{"type":24,"tag":36,"props":3082,"children":3083},{},[3084],{"type":24,"tag":142,"props":3085,"children":3086},{},[3087],{"type":29,"value":3088},"网址前缀资源（URL Prefix Property）",{"type":24,"tag":36,"props":3090,"children":3091},{},[3092],{"type":29,"value":3093},"只覆盖特定 URL 前缀：",{"type":24,"tag":601,"props":3095,"children":3096},{},[3097],{"type":24,"tag":545,"props":3098,"children":3099},{},[3100,3102],{"type":29,"value":3101},"只监控 ",{"type":24,"tag":608,"props":3103,"children":3105},{"href":3058,"rel":3104},[612],[3106],{"type":29,"value":3058},{"type":24,"tag":36,"props":3108,"children":3109},{},[3110],{"type":29,"value":3111},"优点：验证方式多样，设置更简单。\n缺点：需要为每个变体单独添加资源。",{"type":24,"tag":36,"props":3113,"children":3114},{},[3115,3120],{"type":24,"tag":142,"props":3116,"children":3117},{},[3118],{"type":29,"value":3119},"选择建议",{"type":29,"value":3121},"：",{"type":24,"tag":601,"props":3123,"children":3124},{},[3125,3130,3135],{"type":24,"tag":545,"props":3126,"children":3127},{},[3128],{"type":29,"value":3129},"如果你有 DNS 访问权限，选择网域资源",{"type":24,"tag":545,"props":3131,"children":3132},{},[3133],{"type":29,"value":3134},"如果你管理一个大型网站的特定子目录，选择网址前缀",{"type":24,"tag":545,"props":3136,"children":3137},{},[3138],{"type":29,"value":3139},"新网站建议同时添加两种类型，以获取最完整的数据",{"type":24,"tag":62,"props":3141,"children":3143},{"id":3142},"步骤三验证所有权",[3144],{"type":29,"value":3145},"步骤三：验证所有权",{"type":24,"tag":36,"props":3147,"children":3148},{},[3149],{"type":29,"value":3150},"验证是证明你是网站合法所有者的过程。不同资源类型有不同的验证方式：",{"type":24,"tag":36,"props":3152,"children":3153},{},[3154],{"type":24,"tag":142,"props":3155,"children":3156},{},[3157],{"type":29,"value":3158},"DNS 验证（网域资源唯一方式）",{"type":24,"tag":47,"props":3160,"children":3162},{"code":3161},"1. 登录域名注册商的 DNS 管理面板\n2. 添加 TXT 记录\n3. 记录类型：TXT\n4. 主机名：@ 或留空\n5. 值：Google 提供的验证字符串（如 google-site-verification=xxxxx）\n6. TTL：默认即可\n7. 保存并等待 DNS 生效（可能需要几分钟到 48 小时）\n8. 返回 GSC 点击验证\n",[3163],{"type":24,"tag":52,"props":3164,"children":3165},{"__ignoreMap":7},[3166],{"type":29,"value":3161},{"type":24,"tag":36,"props":3168,"children":3169},{},[3170],{"type":24,"tag":142,"props":3171,"children":3172},{},[3173],{"type":29,"value":3174},"HTML 文件验证（推荐用于网址前缀）",{"type":24,"tag":47,"props":3176,"children":3178},{"code":3177},"1. 下载 Google 提供的 HTML 文件（如 googlexxxxxxx.html）\n2. 上传到网站根目录\n3. 确保可以通过 https://yoursite.com/googlexxxxxxx.html 访问\n4. 返回 GSC 点击验证\n",[3179],{"type":24,"tag":52,"props":3180,"children":3181},{"__ignoreMap":7},[3182],{"type":29,"value":3177},{"type":24,"tag":36,"props":3184,"children":3185},{},[3186],{"type":24,"tag":142,"props":3187,"children":3188},{},[3189],{"type":29,"value":3190},"HTML 标签验证",{"type":24,"tag":36,"props":3192,"children":3193},{},[3194,3196,3202],{"type":29,"value":3195},"在网站首页的 ",{"type":24,"tag":52,"props":3197,"children":3199},{"className":3198},[],[3200],{"type":29,"value":3201},"\u003Chead>",{"type":29,"value":3203}," 中添加 meta 标签：",{"type":24,"tag":47,"props":3205,"children":3208},{"code":3206,"language":1852,"meta":7,"className":3207},"\u003Chead>\n  \u003C!-- 其他标签 -->\n  \u003Cmeta name=\"google-site-verification\" content=\"你的验证码\" />\n\u003C/head>\n",[1850],[3209],{"type":24,"tag":52,"props":3210,"children":3211},{"__ignoreMap":7},[3212],{"type":29,"value":3206},{"type":24,"tag":36,"props":3214,"children":3215},{},[3216],{"type":24,"tag":142,"props":3217,"children":3218},{},[3219],{"type":29,"value":3220},"Google Analytics 验证",{"type":24,"tag":36,"props":3222,"children":3223},{},[3224],{"type":29,"value":3225},"如果你已经安装了 GA 追踪代码，可以直接使用它来验证 GSC，无需额外操作。",{"type":24,"tag":36,"props":3227,"children":3228},{},[3229],{"type":24,"tag":142,"props":3230,"children":3231},{},[3232],{"type":29,"value":3233},"Google Tag Manager 验证",{"type":24,"tag":36,"props":3235,"children":3236},{},[3237],{"type":29,"value":3238},"同样，如果已安装 GTM，也可以用于验证。",{"type":24,"tag":62,"props":3240,"children":3242},{"id":3241},"验证常见问题排查",[3243],{"type":29,"value":3241},{"type":24,"tag":36,"props":3245,"children":3246},{},[3247],{"type":24,"tag":142,"props":3248,"children":3249},{},[3250],{"type":29,"value":3251},"问题：DNS 验证失败",{"type":24,"tag":601,"props":3253,"children":3254},{},[3255,3260,3274],{"type":24,"tag":545,"props":3256,"children":3257},{},[3258],{"type":29,"value":3259},"检查 TXT 记录是否正确添加",{"type":24,"tag":545,"props":3261,"children":3262},{},[3263,3265,3272],{"type":29,"value":3264},"使用 ",{"type":24,"tag":608,"props":3266,"children":3269},{"href":3267,"rel":3268},"https://dnschecker.org/",[612],[3270],{"type":29,"value":3271},"DNS Checker",{"type":29,"value":3273}," 确认记录已传播",{"type":24,"tag":545,"props":3275,"children":3276},{},[3277],{"type":29,"value":3278},"某些域名注册商需要额外时间，等待 24-48 小时再试",{"type":24,"tag":36,"props":3280,"children":3281},{},[3282],{"type":24,"tag":142,"props":3283,"children":3284},{},[3285],{"type":29,"value":3286},"问题：HTML 文件验证失败",{"type":24,"tag":601,"props":3288,"children":3289},{},[3290,3295,3300],{"type":24,"tag":545,"props":3291,"children":3292},{},[3293],{"type":29,"value":3294},"确保文件在根目录，不是子目录",{"type":24,"tag":545,"props":3296,"children":3297},{},[3298],{"type":29,"value":3299},"检查文件内容没有被修改",{"type":24,"tag":545,"props":3301,"children":3302},{},[3303],{"type":29,"value":3304},"确保服务器没有阻止 Google 的访问",{"type":24,"tag":36,"props":3306,"children":3307},{},[3308],{"type":24,"tag":142,"props":3309,"children":3310},{},[3311],{"type":29,"value":3312},"问题：验证后又丢失",{"type":24,"tag":601,"props":3314,"children":3315},{},[3316,3321,3326],{"type":24,"tag":545,"props":3317,"children":3318},{},[3319],{"type":29,"value":3320},"不要删除验证文件或 DNS 记录",{"type":24,"tag":545,"props":3322,"children":3323},{},[3324],{"type":29,"value":3325},"Google 会定期重新检查验证",{"type":24,"tag":545,"props":3327,"children":3328},{},[3329],{"type":29,"value":3330},"如果丢失，重新添加即可",{"type":24,"tag":25,"props":3332,"children":3334},{"id":3333},"核心功能详解",[3335],{"type":29,"value":3333},{"type":24,"tag":36,"props":3337,"children":3338},{},[3339],{"type":29,"value":3340},"验证完成后，让我们深入了解 GSC 的各项核心功能。",{"type":24,"tag":62,"props":3342,"children":3344},{"id":3343},"一效果报告performance",[3345],{"type":29,"value":3346},"一、效果报告（Performance）",{"type":24,"tag":36,"props":3348,"children":3349},{},[3350],{"type":29,"value":3351},"效果报告是 GSC 最有价值的功能，展示了你的网站在 Google 搜索中的真实表现。",{"type":24,"tag":36,"props":3353,"children":3354},{},[3355],{"type":24,"tag":142,"props":3356,"children":3357},{},[3358],{"type":29,"value":3359},"四大核心指标",{"type":24,"tag":103,"props":3361,"children":3362},{},[3363,3384],{"type":24,"tag":107,"props":3364,"children":3365},{},[3366],{"type":24,"tag":111,"props":3367,"children":3368},{},[3369,3374,3379],{"type":24,"tag":115,"props":3370,"children":3371},{},[3372],{"type":29,"value":3373},"指标",{"type":24,"tag":115,"props":3375,"children":3376},{},[3377],{"type":29,"value":3378},"含义",{"type":24,"tag":115,"props":3380,"children":3381},{},[3382],{"type":29,"value":3383},"重要性",{"type":24,"tag":131,"props":3385,"children":3386},{},[3387,3408,3429,3450],{"type":24,"tag":111,"props":3388,"children":3389},{},[3390,3398,3403],{"type":24,"tag":138,"props":3391,"children":3392},{},[3393],{"type":24,"tag":142,"props":3394,"children":3395},{},[3396],{"type":29,"value":3397},"总点击次数",{"type":24,"tag":138,"props":3399,"children":3400},{},[3401],{"type":29,"value":3402},"用户点击你的搜索结果进入网站的次数",{"type":24,"tag":138,"props":3404,"children":3405},{},[3406],{"type":29,"value":3407},"直接反映搜索流量",{"type":24,"tag":111,"props":3409,"children":3410},{},[3411,3419,3424],{"type":24,"tag":138,"props":3412,"children":3413},{},[3414],{"type":24,"tag":142,"props":3415,"children":3416},{},[3417],{"type":29,"value":3418},"总展示次数",{"type":24,"tag":138,"props":3420,"children":3421},{},[3422],{"type":29,"value":3423},"你的网页在搜索结果中出现的次数",{"type":24,"tag":138,"props":3425,"children":3426},{},[3427],{"type":29,"value":3428},"反映可见度和覆盖面",{"type":24,"tag":111,"props":3430,"children":3431},{},[3432,3440,3445],{"type":24,"tag":138,"props":3433,"children":3434},{},[3435],{"type":24,"tag":142,"props":3436,"children":3437},{},[3438],{"type":29,"value":3439},"平均点击率(CTR)",{"type":24,"tag":138,"props":3441,"children":3442},{},[3443],{"type":29,"value":3444},"点击次数 ÷ 展示次数",{"type":24,"tag":138,"props":3446,"children":3447},{},[3448],{"type":29,"value":3449},"反映搜索结果的吸引力",{"type":24,"tag":111,"props":3451,"children":3452},{},[3453,3461,3466],{"type":24,"tag":138,"props":3454,"children":3455},{},[3456],{"type":24,"tag":142,"props":3457,"children":3458},{},[3459],{"type":29,"value":3460},"平均排名位置",{"type":24,"tag":138,"props":3462,"children":3463},{},[3464],{"type":29,"value":3465},"在搜索结果中的平均位置",{"type":24,"tag":138,"props":3467,"children":3468},{},[3469],{"type":29,"value":3470},"反映 SEO 效果",{"type":24,"tag":36,"props":3472,"children":3473},{},[3474],{"type":24,"tag":142,"props":3475,"children":3476},{},[3477],{"type":29,"value":3478},"如何解读这些数据",{"type":24,"tag":36,"props":3480,"children":3481},{},[3482],{"type":29,"value":3483},"让我们通过一个实际案例来理解：",{"type":24,"tag":36,"props":3485,"children":3486},{},[3487],{"type":29,"value":3488},"假设某页面的数据是：",{"type":24,"tag":601,"props":3490,"children":3491},{},[3492,3497,3502,3507],{"type":24,"tag":545,"props":3493,"children":3494},{},[3495],{"type":29,"value":3496},"展示次数：10,000",{"type":24,"tag":545,"props":3498,"children":3499},{},[3500],{"type":29,"value":3501},"点击次数：300",{"type":24,"tag":545,"props":3503,"children":3504},{},[3505],{"type":29,"value":3506},"平均点击率：3%",{"type":24,"tag":545,"props":3508,"children":3509},{},[3510],{"type":29,"value":3511},"平均排名：8.5",{"type":24,"tag":36,"props":3513,"children":3514},{},[3515,3520],{"type":24,"tag":142,"props":3516,"children":3517},{},[3518],{"type":29,"value":3519},"分析",{"type":29,"value":3121},{"type":24,"tag":601,"props":3522,"children":3523},{},[3524,3529,3534],{"type":24,"tag":545,"props":3525,"children":3526},{},[3527],{"type":29,"value":3528},"展示量不错，说明页面在目标关键词上有一定曝光",{"type":24,"tag":545,"props":3530,"children":3531},{},[3532],{"type":29,"value":3533},"平均排名 8.5 意味着大约在第一页底部或第二页顶部",{"type":24,"tag":545,"props":3535,"children":3536},{},[3537],{"type":29,"value":3538},"3% 的点击率对于排名第 8-9 的结果来说算正常",{"type":24,"tag":36,"props":3540,"children":3541},{},[3542,3547],{"type":24,"tag":142,"props":3543,"children":3544},{},[3545],{"type":29,"value":3546},"可能的优化方向",{"type":29,"value":3121},{"type":24,"tag":541,"props":3549,"children":3550},{},[3551,3556,3561],{"type":24,"tag":545,"props":3552,"children":3553},{},[3554],{"type":29,"value":3555},"提升排名到前 3 位可以显著提高 CTR",{"type":24,"tag":545,"props":3557,"children":3558},{},[3559],{"type":29,"value":3560},"优化 Title 和 Description 可以在当前排名下提高 CTR",{"type":24,"tag":545,"props":3562,"children":3563},{},[3564],{"type":29,"value":3565},"分析具体查询词，了解用户搜索意图",{"type":24,"tag":36,"props":3567,"children":3568},{},[3569],{"type":24,"tag":142,"props":3570,"children":3571},{},[3572],{"type":29,"value":3573},"筛选维度详解",{"type":24,"tag":36,"props":3575,"children":3576},{},[3577],{"type":29,"value":3578},"效果报告支持多种筛选维度：",{"type":24,"tag":36,"props":3580,"children":3581},{},[3582],{"type":24,"tag":142,"props":3583,"children":3584},{},[3585],{"type":29,"value":3586},"查询（Queries）",{"type":24,"tag":601,"props":3588,"children":3589},{},[3590,3595,3600],{"type":24,"tag":545,"props":3591,"children":3592},{},[3593],{"type":29,"value":3594},"展示用户实际搜索的关键词",{"type":24,"tag":545,"props":3596,"children":3597},{},[3598],{"type":29,"value":3599},"这是发现新关键词机会的金矿",{"type":24,"tag":545,"props":3601,"children":3602},{},[3603],{"type":29,"value":3604},"注意：部分查询因隐私保护不会显示",{"type":24,"tag":36,"props":3606,"children":3607},{},[3608],{"type":24,"tag":142,"props":3609,"children":3610},{},[3611],{"type":29,"value":3612},"页面（Pages）",{"type":24,"tag":601,"props":3614,"children":3615},{},[3616,3621,3626],{"type":24,"tag":545,"props":3617,"children":3618},{},[3619],{"type":29,"value":3620},"按具体 URL 查看表现",{"type":24,"tag":545,"props":3622,"children":3623},{},[3624],{"type":29,"value":3625},"找出表现最好和最差的页面",{"type":24,"tag":545,"props":3627,"children":3628},{},[3629],{"type":29,"value":3630},"发现需要优化的低效页面",{"type":24,"tag":36,"props":3632,"children":3633},{},[3634],{"type":24,"tag":142,"props":3635,"children":3636},{},[3637],{"type":29,"value":3638},"国家/地区（Countries）",{"type":24,"tag":601,"props":3640,"children":3641},{},[3642,3647,3652],{"type":24,"tag":545,"props":3643,"children":3644},{},[3645],{"type":29,"value":3646},"了解流量的地理分布",{"type":24,"tag":545,"props":3648,"children":3649},{},[3650],{"type":29,"value":3651},"对于多语言网站特别重要",{"type":24,"tag":545,"props":3653,"children":3654},{},[3655],{"type":29,"value":3656},"发现意外的国际流量机会",{"type":24,"tag":36,"props":3658,"children":3659},{},[3660],{"type":24,"tag":142,"props":3661,"children":3662},{},[3663],{"type":29,"value":3664},"设备（Devices）",{"type":24,"tag":601,"props":3666,"children":3667},{},[3668,3673,3678],{"type":24,"tag":545,"props":3669,"children":3670},{},[3671],{"type":29,"value":3672},"区分桌面端、移动端、平板",{"type":24,"tag":545,"props":3674,"children":3675},{},[3676],{"type":29,"value":3677},"现在移动流量通常占主导",{"type":24,"tag":545,"props":3679,"children":3680},{},[3681],{"type":29,"value":3682},"如果移动表现差，需要检查移动体验",{"type":24,"tag":36,"props":3684,"children":3685},{},[3686],{"type":24,"tag":142,"props":3687,"children":3688},{},[3689],{"type":29,"value":3690},"搜索外观（Search Appearance）",{"type":24,"tag":601,"props":3692,"children":3693},{},[3694,3699,3704],{"type":24,"tag":545,"props":3695,"children":3696},{},[3697],{"type":29,"value":3698},"展示结果在 SERP 中的呈现方式",{"type":24,"tag":545,"props":3700,"children":3701},{},[3702],{"type":29,"value":3703},"包括：视频结果、FAQ、产品结果等",{"type":24,"tag":545,"props":3705,"children":3706},{},[3707],{"type":29,"value":3708},"帮助理解富媒体搜索结果的贡献",{"type":24,"tag":36,"props":3710,"children":3711},{},[3712],{"type":24,"tag":142,"props":3713,"children":3714},{},[3715],{"type":29,"value":3716},"日期范围",{"type":24,"tag":601,"props":3718,"children":3719},{},[3720,3725,3730],{"type":24,"tag":545,"props":3721,"children":3722},{},[3723],{"type":29,"value":3724},"最多可查看 16 个月的数据",{"type":24,"tag":545,"props":3726,"children":3727},{},[3728],{"type":29,"value":3729},"支持对比不同时间段",{"type":24,"tag":545,"props":3731,"children":3732},{},[3733],{"type":29,"value":3734},"用于分析趋势和季节性变化",{"type":24,"tag":62,"props":3736,"children":3738},{"id":3737},"二网址检查工具",[3739],{"type":29,"value":3740},"二、网址检查工具",{"type":24,"tag":36,"props":3742,"children":3743},{},[3744],{"type":29,"value":3745},"这是诊断单个页面问题的利器。输入任何 URL，可以看到：",{"type":24,"tag":36,"props":3747,"children":3748},{},[3749],{"type":24,"tag":142,"props":3750,"children":3751},{},[3752],{"type":29,"value":3753},"索引状态",{"type":24,"tag":601,"props":3755,"children":3756},{},[3757,3762,3767],{"type":24,"tag":545,"props":3758,"children":3759},{},[3760],{"type":29,"value":3761},"页面是否已被 Google 索引",{"type":24,"tag":545,"props":3763,"children":3764},{},[3765],{"type":29,"value":3766},"如果没有，原因是什么",{"type":24,"tag":545,"props":3768,"children":3769},{},[3770],{"type":29,"value":3771},"上次爬取时间",{"type":24,"tag":36,"props":3773,"children":3774},{},[3775],{"type":24,"tag":142,"props":3776,"children":3777},{},[3778],{"type":29,"value":3779},"覆盖范围详情",{"type":24,"tag":601,"props":3781,"children":3782},{},[3783,3788,3793],{"type":24,"tag":545,"props":3784,"children":3785},{},[3786],{"type":29,"value":3787},"页面是否有资格出现在搜索结果中",{"type":24,"tag":545,"props":3789,"children":3790},{},[3791],{"type":29,"value":3792},"是否有任何阻止索引的问题",{"type":24,"tag":545,"props":3794,"children":3795},{},[3796],{"type":29,"value":3797},"canonical URL 是什么",{"type":24,"tag":36,"props":3799,"children":3800},{},[3801],{"type":24,"tag":142,"props":3802,"children":3803},{},[3804],{"type":29,"value":3805},"移动设备易用性",{"type":24,"tag":601,"props":3807,"children":3808},{},[3809,3814],{"type":24,"tag":545,"props":3810,"children":3811},{},[3812],{"type":29,"value":3813},"页面是否适合移动设备",{"type":24,"tag":545,"props":3815,"children":3816},{},[3817],{"type":29,"value":3818},"存在哪些移动端问题",{"type":24,"tag":36,"props":3820,"children":3821},{},[3822],{"type":24,"tag":142,"props":3823,"children":3824},{},[3825],{"type":29,"value":3826},"使用场景",{"type":24,"tag":36,"props":3828,"children":3829},{},[3830],{"type":24,"tag":142,"props":3831,"children":3832},{},[3833],{"type":29,"value":3834},"场景一：新发布的内容",{"type":24,"tag":47,"props":3836,"children":3838},{"code":3837},"发布新文章后 → 使用网址检查 → 申请编入索引\n可以加速 Google 发现和索引新内容\n",[3839],{"type":24,"tag":52,"props":3840,"children":3841},{"__ignoreMap":7},[3842],{"type":29,"value":3837},{"type":24,"tag":36,"props":3844,"children":3845},{},[3846],{"type":24,"tag":142,"props":3847,"children":3848},{},[3849],{"type":29,"value":3850},"场景二：更新后的内容",{"type":24,"tag":47,"props":3852,"children":3854},{"code":3853},"修改重要页面后 → 使用网址检查 → 检查实时测试\n确认 Google 看到的是最新版本\n",[3855],{"type":24,"tag":52,"props":3856,"children":3857},{"__ignoreMap":7},[3858],{"type":29,"value":3853},{"type":24,"tag":36,"props":3860,"children":3861},{},[3862],{"type":24,"tag":142,"props":3863,"children":3864},{},[3865],{"type":29,"value":3866},"场景三：排名突然下降",{"type":24,"tag":47,"props":3868,"children":3870},{"code":3869},"发现排名下降 → 使用网址检查 → 检查是否有索引问题\n排除技术层面的问题\n",[3871],{"type":24,"tag":52,"props":3872,"children":3873},{"__ignoreMap":7},[3874],{"type":29,"value":3869},{"type":24,"tag":62,"props":3876,"children":3878},{"id":3877},"三索引覆盖报告",[3879],{"type":29,"value":3880},"三、索引覆盖报告",{"type":24,"tag":36,"props":3882,"children":3883},{},[3884],{"type":29,"value":3885},"这份报告展示了网站所有页面的索引状态，分为四类：",{"type":24,"tag":36,"props":3887,"children":3888},{},[3889],{"type":24,"tag":142,"props":3890,"children":3891},{},[3892],{"type":29,"value":3893},"有效（Valid）",{"type":24,"tag":601,"props":3895,"children":3896},{},[3897,3902,3907],{"type":24,"tag":545,"props":3898,"children":3899},{},[3900],{"type":29,"value":3901},"页面已被成功索引",{"type":24,"tag":545,"props":3903,"children":3904},{},[3905],{"type":29,"value":3906},"可以出现在搜索结果中",{"type":24,"tag":545,"props":3908,"children":3909},{},[3910],{"type":29,"value":3911},"这是你希望看到的状态",{"type":24,"tag":36,"props":3913,"children":3914},{},[3915],{"type":24,"tag":142,"props":3916,"children":3917},{},[3918],{"type":29,"value":3919},"有效但有警告（Valid with warnings）",{"type":24,"tag":601,"props":3921,"children":3922},{},[3923,3928,3933],{"type":24,"tag":545,"props":3924,"children":3925},{},[3926],{"type":29,"value":3927},"页面已索引，但存在潜在问题",{"type":24,"tag":545,"props":3929,"children":3930},{},[3931],{"type":29,"value":3932},"常见情况：被 robots.txt 阻止但仍被索引",{"type":24,"tag":545,"props":3934,"children":3935},{},[3936],{"type":29,"value":3937},"需要检查是否符合预期",{"type":24,"tag":36,"props":3939,"children":3940},{},[3941],{"type":24,"tag":142,"props":3942,"children":3943},{},[3944],{"type":29,"value":3945},"错误（Error）",{"type":24,"tag":601,"props":3947,"children":3948},{},[3949,3954,3959],{"type":24,"tag":545,"props":3950,"children":3951},{},[3952],{"type":29,"value":3953},"页面无法被索引",{"type":24,"tag":545,"props":3955,"children":3956},{},[3957],{"type":29,"value":3958},"需要优先处理",{"type":24,"tag":545,"props":3960,"children":3961},{},[3962],{"type":29,"value":3963},"常见原因：服务器错误、重定向问题",{"type":24,"tag":36,"props":3965,"children":3966},{},[3967],{"type":24,"tag":142,"props":3968,"children":3969},{},[3970],{"type":29,"value":3971},"已排除（Excluded）",{"type":24,"tag":601,"props":3973,"children":3974},{},[3975,3980,3985],{"type":24,"tag":545,"props":3976,"children":3977},{},[3978],{"type":29,"value":3979},"页面被有意或无意排除在索引之外",{"type":24,"tag":545,"props":3981,"children":3982},{},[3983],{"type":29,"value":3984},"包括：规范化的替代页面、被 noindex 标记的页面",{"type":24,"tag":545,"props":3986,"children":3987},{},[3988],{"type":29,"value":3937},{"type":24,"tag":36,"props":3990,"children":3991},{},[3992],{"type":24,"tag":142,"props":3993,"children":3994},{},[3995],{"type":29,"value":3996},"常见错误及解决方案",{"type":24,"tag":103,"props":3998,"children":3999},{},[4000,4019],{"type":24,"tag":107,"props":4001,"children":4002},{},[4003],{"type":24,"tag":111,"props":4004,"children":4005},{},[4006,4010,4015],{"type":24,"tag":115,"props":4007,"children":4008},{},[4009],{"type":29,"value":2363},{"type":24,"tag":115,"props":4011,"children":4012},{},[4013],{"type":29,"value":4014},"可能原因",{"type":24,"tag":115,"props":4016,"children":4017},{},[4018],{"type":29,"value":2373},{"type":24,"tag":131,"props":4020,"children":4021},{},[4022,4040,4058,4076,4094],{"type":24,"tag":111,"props":4023,"children":4024},{},[4025,4030,4035],{"type":24,"tag":138,"props":4026,"children":4027},{},[4028],{"type":29,"value":4029},"服务器错误 (5xx)",{"type":24,"tag":138,"props":4031,"children":4032},{},[4033],{"type":29,"value":4034},"服务器问题、程序错误",{"type":24,"tag":138,"props":4036,"children":4037},{},[4038],{"type":29,"value":4039},"检查服务器日志，修复代码问题",{"type":24,"tag":111,"props":4041,"children":4042},{},[4043,4048,4053],{"type":24,"tag":138,"props":4044,"children":4045},{},[4046],{"type":29,"value":4047},"重定向错误",{"type":24,"tag":138,"props":4049,"children":4050},{},[4051],{"type":29,"value":4052},"重定向链过长、重定向循环",{"type":24,"tag":138,"props":4054,"children":4055},{},[4056],{"type":29,"value":4057},"简化重定向，消除循环",{"type":24,"tag":111,"props":4059,"children":4060},{},[4061,4066,4071],{"type":24,"tag":138,"props":4062,"children":4063},{},[4064],{"type":29,"value":4065},"已提交的 URL 被 robots.txt 阻止",{"type":24,"tag":138,"props":4067,"children":4068},{},[4069],{"type":29,"value":4070},"robots.txt 规则冲突",{"type":24,"tag":138,"props":4072,"children":4073},{},[4074],{"type":29,"value":4075},"修改 robots.txt 或从 sitemap 移除",{"type":24,"tag":111,"props":4077,"children":4078},{},[4079,4084,4089],{"type":24,"tag":138,"props":4080,"children":4081},{},[4082],{"type":29,"value":4083},"软 404",{"type":24,"tag":138,"props":4085,"children":4086},{},[4087],{"type":29,"value":4088},"页面返回 200 但内容为空或错误",{"type":24,"tag":138,"props":4090,"children":4091},{},[4092],{"type":29,"value":4093},"确保页面有实质内容或返回真正的 404",{"type":24,"tag":111,"props":4095,"children":4096},{},[4097,4102,4107],{"type":24,"tag":138,"props":4098,"children":4099},{},[4100],{"type":29,"value":4101},"已抓取但未编入索引",{"type":24,"tag":138,"props":4103,"children":4104},{},[4105],{"type":29,"value":4106},"内容质量问题、重复内容",{"type":24,"tag":138,"props":4108,"children":4109},{},[4110],{"type":29,"value":4111},"提升内容质量，确保唯一性",{"type":24,"tag":62,"props":4113,"children":4115},{"id":4114},"四sitemap-管理",[4116],{"type":29,"value":4117},"四、Sitemap 管理",{"type":24,"tag":36,"props":4119,"children":4120},{},[4121],{"type":29,"value":4122},"Sitemap（站点地图）帮助 Google 更有效地发现和理解你的网站结构。",{"type":24,"tag":36,"props":4124,"children":4125},{},[4126],{"type":24,"tag":142,"props":4127,"children":4128},{},[4129],{"type":29,"value":4130},"提交 Sitemap 的步骤",{"type":24,"tag":541,"props":4132,"children":4133},{},[4134,4139,4144,4149],{"type":24,"tag":545,"props":4135,"children":4136},{},[4137],{"type":29,"value":4138},"确保你有一个有效的 XML Sitemap",{"type":24,"tag":545,"props":4140,"children":4141},{},[4142],{"type":29,"value":4143},"在 GSC 中导航到\"站点地图\"",{"type":24,"tag":545,"props":4145,"children":4146},{},[4147],{"type":29,"value":4148},"输入 Sitemap URL（通常是 /sitemap.xml）",{"type":24,"tag":545,"props":4150,"children":4151},{},[4152],{"type":29,"value":4153},"点击提交",{"type":24,"tag":36,"props":4155,"children":4156},{},[4157],{"type":24,"tag":142,"props":4158,"children":4159},{},[4160],{"type":29,"value":4161},"Sitemap 最佳实践",{"type":24,"tag":47,"props":4163,"children":4168},{"code":4164,"language":4165,"meta":7,"className":4166},"\u003C?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\u003Curlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n  \u003Curl>\n    \u003Cloc>https://example.com/page1\u003C/loc>\n    \u003Clastmod>2025-12-24\u003C/lastmod>\n    \u003Cchangefreq>weekly\u003C/changefreq>\n    \u003Cpriority>0.8\u003C/priority>\n  \u003C/url>\n  \u003C!-- 更多 URL -->\n\u003C/urlset>\n","xml",[4167],"language-xml",[4169],{"type":24,"tag":52,"props":4170,"children":4171},{"__ignoreMap":7},[4172],{"type":29,"value":4164},{"type":24,"tag":36,"props":4174,"children":4175},{},[4176,4181],{"type":24,"tag":142,"props":4177,"children":4178},{},[4179],{"type":29,"value":4180},"注意事项",{"type":29,"value":3121},{"type":24,"tag":601,"props":4183,"children":4184},{},[4185,4190,4195,4200],{"type":24,"tag":545,"props":4186,"children":4187},{},[4188],{"type":29,"value":4189},"只包含你希望被索引的规范 URL",{"type":24,"tag":545,"props":4191,"children":4192},{},[4193],{"type":29,"value":4194},"定期更新 lastmod 日期",{"type":24,"tag":545,"props":4196,"children":4197},{},[4198],{"type":29,"value":4199},"大型网站使用 Sitemap 索引文件",{"type":24,"tag":545,"props":4201,"children":4202},{},[4203],{"type":29,"value":4204},"确保 Sitemap 中的 URL 都返回 200 状态",{"type":24,"tag":36,"props":4206,"children":4207},{},[4208],{"type":24,"tag":142,"props":4209,"children":4210},{},[4211],{"type":29,"value":4212},"Sitemap 状态解读",{"type":24,"tag":103,"props":4214,"children":4215},{},[4216,4231],{"type":24,"tag":107,"props":4217,"children":4218},{},[4219],{"type":24,"tag":111,"props":4220,"children":4221},{},[4222,4227],{"type":24,"tag":115,"props":4223,"children":4224},{},[4225],{"type":29,"value":4226},"状态",{"type":24,"tag":115,"props":4228,"children":4229},{},[4230],{"type":29,"value":3378},{"type":24,"tag":131,"props":4232,"children":4233},{},[4234,4247,4260,4273],{"type":24,"tag":111,"props":4235,"children":4236},{},[4237,4242],{"type":24,"tag":138,"props":4238,"children":4239},{},[4240],{"type":29,"value":4241},"成功",{"type":24,"tag":138,"props":4243,"children":4244},{},[4245],{"type":29,"value":4246},"Sitemap 已处理，没有问题",{"type":24,"tag":111,"props":4248,"children":4249},{},[4250,4255],{"type":24,"tag":138,"props":4251,"children":4252},{},[4253],{"type":29,"value":4254},"有错误",{"type":24,"tag":138,"props":4256,"children":4257},{},[4258],{"type":29,"value":4259},"Sitemap 格式有问题",{"type":24,"tag":111,"props":4261,"children":4262},{},[4263,4268],{"type":24,"tag":138,"props":4264,"children":4265},{},[4266],{"type":29,"value":4267},"无法获取",{"type":24,"tag":138,"props":4269,"children":4270},{},[4271],{"type":29,"value":4272},"Google 无法访问 Sitemap",{"type":24,"tag":111,"props":4274,"children":4275},{},[4276,4281],{"type":24,"tag":138,"props":4277,"children":4278},{},[4279],{"type":29,"value":4280},"待处理",{"type":24,"tag":138,"props":4282,"children":4283},{},[4284],{"type":29,"value":4285},"Sitemap 已提交，等待处理",{"type":24,"tag":62,"props":4287,"children":4289},{"id":4288},"五移动设备易用性报告",[4290],{"type":29,"value":4291},"五、移动设备易用性报告",{"type":24,"tag":36,"props":4293,"children":4294},{},[4295],{"type":29,"value":4296},"随着 Google 采用移动优先索引，这份报告变得越来越重要。",{"type":24,"tag":36,"props":4298,"children":4299},{},[4300],{"type":24,"tag":142,"props":4301,"children":4302},{},[4303],{"type":29,"value":4304},"常见移动端问题",{"type":24,"tag":103,"props":4306,"children":4307},{},[4308,4327],{"type":24,"tag":107,"props":4309,"children":4310},{},[4311],{"type":24,"tag":111,"props":4312,"children":4313},{},[4314,4319,4323],{"type":24,"tag":115,"props":4315,"children":4316},{},[4317],{"type":29,"value":4318},"问题",{"type":24,"tag":115,"props":4320,"children":4321},{},[4322],{"type":29,"value":1952},{"type":24,"tag":115,"props":4324,"children":4325},{},[4326],{"type":29,"value":2373},{"type":24,"tag":131,"props":4328,"children":4329},{},[4330,4348,4366,4384],{"type":24,"tag":111,"props":4331,"children":4332},{},[4333,4338,4343],{"type":24,"tag":138,"props":4334,"children":4335},{},[4336],{"type":29,"value":4337},"文字太小无法阅读",{"type":24,"tag":138,"props":4339,"children":4340},{},[4341],{"type":29,"value":4342},"字体小于 16px",{"type":24,"tag":138,"props":4344,"children":4345},{},[4346],{"type":29,"value":4347},"增大字体，使用相对单位",{"type":24,"tag":111,"props":4349,"children":4350},{},[4351,4356,4361],{"type":24,"tag":138,"props":4352,"children":4353},{},[4354],{"type":29,"value":4355},"可点击元素过于靠近",{"type":24,"tag":138,"props":4357,"children":4358},{},[4359],{"type":29,"value":4360},"按钮/链接间距不足",{"type":24,"tag":138,"props":4362,"children":4363},{},[4364],{"type":29,"value":4365},"增加触摸目标间距（至少 48px）",{"type":24,"tag":111,"props":4367,"children":4368},{},[4369,4374,4379],{"type":24,"tag":138,"props":4370,"children":4371},{},[4372],{"type":29,"value":4373},"内容宽度超出屏幕",{"type":24,"tag":138,"props":4375,"children":4376},{},[4377],{"type":29,"value":4378},"水平滚动",{"type":24,"tag":138,"props":4380,"children":4381},{},[4382],{"type":29,"value":4383},"使用响应式设计，设置 viewport",{"type":24,"tag":111,"props":4385,"children":4386},{},[4387,4392,4397],{"type":24,"tag":138,"props":4388,"children":4389},{},[4390],{"type":29,"value":4391},"视口未设置",{"type":24,"tag":138,"props":4393,"children":4394},{},[4395],{"type":29,"value":4396},"缺少 viewport meta 标签",{"type":24,"tag":138,"props":4398,"children":4399},{},[4400],{"type":29,"value":4401},"添加 viewport 标签",{"type":24,"tag":47,"props":4403,"children":4406},{"code":4404,"language":1852,"meta":7,"className":4405},"\u003C!-- 正确的 viewport 设置 -->\n\u003Cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n",[1850],[4407],{"type":24,"tag":52,"props":4408,"children":4409},{"__ignoreMap":7},[4410],{"type":29,"value":4404},{"type":24,"tag":62,"props":4412,"children":4414},{"id":4413},"六核心网页指标报告",[4415],{"type":29,"value":4416},"六、核心网页指标报告",{"type":24,"tag":36,"props":4418,"children":4419},{},[4420],{"type":29,"value":4421},"Core Web Vitals 现在是 Google 排名因素之一，GSC 提供详细的诊断报告。",{"type":24,"tag":36,"props":4423,"children":4424},{},[4425],{"type":24,"tag":142,"props":4426,"children":4427},{},[4428],{"type":29,"value":4429},"三大核心指标",{"type":24,"tag":103,"props":4431,"children":4432},{},[4433,4457],{"type":24,"tag":107,"props":4434,"children":4435},{},[4436],{"type":24,"tag":111,"props":4437,"children":4438},{},[4439,4443,4448,4452],{"type":24,"tag":115,"props":4440,"children":4441},{},[4442],{"type":29,"value":3373},{"type":24,"tag":115,"props":4444,"children":4445},{},[4446],{"type":29,"value":4447},"全称",{"type":24,"tag":115,"props":4449,"children":4450},{},[4451],{"type":29,"value":3378},{"type":24,"tag":115,"props":4453,"children":4454},{},[4455],{"type":29,"value":4456},"良好标准",{"type":24,"tag":131,"props":4458,"children":4459},{},[4460,4483,4506],{"type":24,"tag":111,"props":4461,"children":4462},{},[4463,4468,4473,4478],{"type":24,"tag":138,"props":4464,"children":4465},{},[4466],{"type":29,"value":4467},"LCP",{"type":24,"tag":138,"props":4469,"children":4470},{},[4471],{"type":29,"value":4472},"Largest Contentful Paint",{"type":24,"tag":138,"props":4474,"children":4475},{},[4476],{"type":29,"value":4477},"最大内容绘制时间",{"type":24,"tag":138,"props":4479,"children":4480},{},[4481],{"type":29,"value":4482},"≤ 2.5s",{"type":24,"tag":111,"props":4484,"children":4485},{},[4486,4491,4496,4501],{"type":24,"tag":138,"props":4487,"children":4488},{},[4489],{"type":29,"value":4490},"INP",{"type":24,"tag":138,"props":4492,"children":4493},{},[4494],{"type":29,"value":4495},"Interaction to Next Paint",{"type":24,"tag":138,"props":4497,"children":4498},{},[4499],{"type":29,"value":4500},"交互到下一次绘制",{"type":24,"tag":138,"props":4502,"children":4503},{},[4504],{"type":29,"value":4505},"≤ 200ms",{"type":24,"tag":111,"props":4507,"children":4508},{},[4509,4514,4519,4524],{"type":24,"tag":138,"props":4510,"children":4511},{},[4512],{"type":29,"value":4513},"CLS",{"type":24,"tag":138,"props":4515,"children":4516},{},[4517],{"type":29,"value":4518},"Cumulative Layout Shift",{"type":24,"tag":138,"props":4520,"children":4521},{},[4522],{"type":29,"value":4523},"累积布局偏移",{"type":24,"tag":138,"props":4525,"children":4526},{},[4527],{"type":29,"value":4528},"≤ 0.1",{"type":24,"tag":36,"props":4530,"children":4531},{},[4532],{"type":24,"tag":142,"props":4533,"children":4534},{},[4535],{"type":29,"value":4536},"报告解读",{"type":24,"tag":36,"props":4538,"children":4539},{},[4540],{"type":29,"value":4541},"GSC 将 URL 分为三类：",{"type":24,"tag":601,"props":4543,"children":4544},{},[4545,4555,4565],{"type":24,"tag":545,"props":4546,"children":4547},{},[4548,4553],{"type":24,"tag":142,"props":4549,"children":4550},{},[4551],{"type":29,"value":4552},"良好",{"type":29,"value":4554},"：所有核心指标都达标",{"type":24,"tag":545,"props":4556,"children":4557},{},[4558,4563],{"type":24,"tag":142,"props":4559,"children":4560},{},[4561],{"type":29,"value":4562},"需要改进",{"type":29,"value":4564},"：有指标接近阈值",{"type":24,"tag":545,"props":4566,"children":4567},{},[4568,4573],{"type":24,"tag":142,"props":4569,"children":4570},{},[4571],{"type":29,"value":4572},"较差",{"type":29,"value":4574},"：有指标超出阈值",{"type":24,"tag":36,"props":4576,"children":4577},{},[4578],{"type":24,"tag":142,"props":4579,"children":4580},{},[4581],{"type":29,"value":4582},"优化优先级",{"type":24,"tag":541,"props":4584,"children":4585},{},[4586,4591,4596],{"type":24,"tag":545,"props":4587,"children":4588},{},[4589],{"type":29,"value":4590},"首先处理\"较差\"的 URL",{"type":24,"tag":545,"props":4592,"children":4593},{},[4594],{"type":29,"value":4595},"从流量大的页面开始",{"type":24,"tag":545,"props":4597,"children":4598},{},[4599],{"type":29,"value":4600},"解决影响最多 URL 的共性问题",{"type":24,"tag":25,"props":4602,"children":4604},{"id":4603},"高级应用技巧",[4605],{"type":29,"value":4603},{"type":24,"tag":62,"props":4607,"children":4609},{"id":4608},"技巧一发现低-ctr-高排名的机会",[4610],{"type":29,"value":4611},"技巧一：发现低 CTR 高排名的机会",{"type":24,"tag":36,"props":4613,"children":4614},{},[4615],{"type":29,"value":4616},"这些页面排名已经不错，但点击率低于预期，是最容易优化的目标。",{"type":24,"tag":36,"props":4618,"children":4619},{},[4620,4625],{"type":24,"tag":142,"props":4621,"children":4622},{},[4623],{"type":29,"value":4624},"筛选方法",{"type":29,"value":3121},{"type":24,"tag":541,"props":4627,"children":4628},{},[4629,4634,4639,4644],{"type":24,"tag":545,"props":4630,"children":4631},{},[4632],{"type":29,"value":4633},"进入效果报告",{"type":24,"tag":545,"props":4635,"children":4636},{},[4637],{"type":29,"value":4638},"按平均排名筛选：位置 \u003C 10",{"type":24,"tag":545,"props":4640,"children":4641},{},[4642],{"type":29,"value":4643},"按 CTR 排序：从低到高",{"type":24,"tag":545,"props":4645,"children":4646},{},[4647],{"type":29,"value":4648},"找出排名前 10 但 CTR 低于 3% 的页面",{"type":24,"tag":36,"props":4650,"children":4651},{},[4652,4657],{"type":24,"tag":142,"props":4653,"children":4654},{},[4655],{"type":29,"value":4656},"优化方向",{"type":29,"value":3121},{"type":24,"tag":601,"props":4659,"children":4660},{},[4661,4666,4671],{"type":24,"tag":545,"props":4662,"children":4663},{},[4664],{"type":29,"value":4665},"重写更吸引人的 Title",{"type":24,"tag":545,"props":4667,"children":4668},{},[4669],{"type":29,"value":4670},"优化 Meta Description",{"type":24,"tag":545,"props":4672,"children":4673},{},[4674],{"type":29,"value":4675},"添加结构化数据获得富媒体展示",{"type":24,"tag":62,"props":4677,"children":4679},{"id":4678},"技巧二找出内容差距",[4680],{"type":29,"value":4681},"技巧二：找出内容差距",{"type":24,"tag":36,"props":4683,"children":4684},{},[4685],{"type":29,"value":4686},"通过分析展示但未点击的查询词，发现内容优化机会。",{"type":24,"tag":36,"props":4688,"children":4689},{},[4690,4695],{"type":24,"tag":142,"props":4691,"children":4692},{},[4693],{"type":29,"value":4694},"方法",{"type":29,"value":3121},{"type":24,"tag":541,"props":4697,"children":4698},{},[4699,4704,4709],{"type":24,"tag":545,"props":4700,"children":4701},{},[4702],{"type":29,"value":4703},"效果报告 → 查询",{"type":24,"tag":545,"props":4705,"children":4706},{},[4707],{"type":29,"value":4708},"筛选：展示次数 > 100，点击次数 \u003C 5",{"type":24,"tag":545,"props":4710,"children":4711},{},[4712],{"type":29,"value":4713},"分析这些查询与现有内容的匹配度",{"type":24,"tag":36,"props":4715,"children":4716},{},[4717],{"type":29,"value":4718},"如果某个查询词有大量展示但几乎没有点击，可能意味着：",{"type":24,"tag":601,"props":4720,"children":4721},{},[4722,4727,4732],{"type":24,"tag":545,"props":4723,"children":4724},{},[4725],{"type":29,"value":4726},"你的页面不够匹配用户意图",{"type":24,"tag":545,"props":4728,"children":4729},{},[4730],{"type":29,"value":4731},"需要创建更针对性的内容",{"type":24,"tag":545,"props":4733,"children":4734},{},[4735],{"type":29,"value":4736},"Title/Description 没有很好地回应这个查询",{"type":24,"tag":62,"props":4738,"children":4740},{"id":4739},"技巧三监控品牌搜索",[4741],{"type":29,"value":4742},"技巧三：监控品牌搜索",{"type":24,"tag":36,"props":4744,"children":4745},{},[4746],{"type":29,"value":4747},"品牌搜索是最直接反映品牌知名度的指标。",{"type":24,"tag":36,"props":4749,"children":4750},{},[4751,4756],{"type":24,"tag":142,"props":4752,"children":4753},{},[4754],{"type":29,"value":4755},"设置方法",{"type":29,"value":3121},{"type":24,"tag":541,"props":4758,"children":4759},{},[4760,4765,4770],{"type":24,"tag":545,"props":4761,"children":4762},{},[4763],{"type":29,"value":4764},"效果报告 → 新建筛选",{"type":24,"tag":545,"props":4766,"children":4767},{},[4768],{"type":29,"value":4769},"查询包含：你的品牌名",{"type":24,"tag":545,"props":4771,"children":4772},{},[4773],{"type":29,"value":4774},"保存这个视图",{"type":24,"tag":36,"props":4776,"children":4777},{},[4778,4783],{"type":24,"tag":142,"props":4779,"children":4780},{},[4781],{"type":29,"value":4782},"监控要点",{"type":29,"value":3121},{"type":24,"tag":601,"props":4785,"children":4786},{},[4787,4792,4797],{"type":24,"tag":545,"props":4788,"children":4789},{},[4790],{"type":29,"value":4791},"品牌搜索量的趋势（增长/下降）",{"type":24,"tag":545,"props":4793,"children":4794},{},[4795],{"type":29,"value":4796},"品牌相关查询的变体",{"type":24,"tag":545,"props":4798,"children":4799},{},[4800],{"type":29,"value":4801},"是否有负面相关查询出现",{"type":24,"tag":62,"props":4803,"children":4805},{"id":4804},"技巧四对比时间段",[4806],{"type":29,"value":4807},"技巧四：对比时间段",{"type":24,"tag":36,"props":4809,"children":4810},{},[4811],{"type":29,"value":4812},"利用时间对比功能，发现问题和机会。",{"type":24,"tag":36,"props":4814,"children":4815},{},[4816,4821],{"type":24,"tag":142,"props":4817,"children":4818},{},[4819],{"type":29,"value":4820},"典型对比场景",{"type":29,"value":3121},{"type":24,"tag":601,"props":4823,"children":4824},{},[4825,4830,4835],{"type":24,"tag":545,"props":4826,"children":4827},{},[4828],{"type":29,"value":4829},"本周 vs 上周：发现近期变化",{"type":24,"tag":545,"props":4831,"children":4832},{},[4833],{"type":29,"value":4834},"本月 vs 上月：确认趋势",{"type":24,"tag":545,"props":4836,"children":4837},{},[4838],{"type":29,"value":4839},"今年 vs 去年：分析季节性和年度增长",{"type":24,"tag":36,"props":4841,"children":4842},{},[4843,4848],{"type":24,"tag":142,"props":4844,"children":4845},{},[4846],{"type":29,"value":4847},"如何发现问题",{"type":29,"value":3121},{"type":24,"tag":601,"props":4850,"children":4851},{},[4852,4857,4862],{"type":24,"tag":545,"props":4853,"children":4854},{},[4855],{"type":29,"value":4856},"某个关键词排名突然下降",{"type":24,"tag":545,"props":4858,"children":4859},{},[4860],{"type":29,"value":4861},"特定页面流量异常减少",{"type":24,"tag":545,"props":4863,"children":4864},{},[4865],{"type":29,"value":4866},"整体展示量下降",{"type":24,"tag":62,"props":4868,"children":4870},{"id":4869},"技巧五导出数据深度分析",[4871],{"type":29,"value":4872},"技巧五：导出数据深度分析",{"type":24,"tag":36,"props":4874,"children":4875},{},[4876],{"type":29,"value":4877},"GSC 的界面虽然直观，但数据分析能力有限。导出数据可以做更深入的分析。",{"type":24,"tag":36,"props":4879,"children":4880},{},[4881,4886],{"type":24,"tag":142,"props":4882,"children":4883},{},[4884],{"type":29,"value":4885},"导出方法",{"type":29,"value":3121},{"type":24,"tag":541,"props":4888,"children":4889},{},[4890,4895,4900],{"type":24,"tag":545,"props":4891,"children":4892},{},[4893],{"type":29,"value":4894},"点击右上角的导出按钮",{"type":24,"tag":545,"props":4896,"children":4897},{},[4898],{"type":29,"value":4899},"选择格式：Google 表格、Excel 或 CSV",{"type":24,"tag":545,"props":4901,"children":4902},{},[4903],{"type":29,"value":4904},"在电子表格中进行高级分析",{"type":24,"tag":36,"props":4906,"children":4907},{},[4908,4913],{"type":24,"tag":142,"props":4909,"children":4910},{},[4911],{"type":29,"value":4912},"进阶分析思路",{"type":29,"value":3121},{"type":24,"tag":601,"props":4915,"children":4916},{},[4917,4922,4927],{"type":24,"tag":545,"props":4918,"children":4919},{},[4920],{"type":29,"value":4921},"按页面类型分组分析（产品页、博客页、分类页）",{"type":24,"tag":545,"props":4923,"children":4924},{},[4925],{"type":29,"value":4926},"计算不同设备的 CTR 差异",{"type":24,"tag":545,"props":4928,"children":4929},{},[4930],{"type":29,"value":4931},"识别季节性关键词模式",{"type":24,"tag":25,"props":4933,"children":4935},{"id":4934},"与其他工具整合",[4936],{"type":29,"value":4934},{"type":24,"tag":62,"props":4938,"children":4940},{"id":4939},"gsc-google-analytics-4",[4941],{"type":29,"value":4942},"GSC + Google Analytics 4",{"type":24,"tag":36,"props":4944,"children":4945},{},[4946],{"type":29,"value":4947},"将 GSC 与 GA4 关联，可以在 GA4 中直接查看搜索数据。",{"type":24,"tag":36,"props":4949,"children":4950},{},[4951,4956],{"type":24,"tag":142,"props":4952,"children":4953},{},[4954],{"type":29,"value":4955},"关联步骤",{"type":29,"value":3121},{"type":24,"tag":541,"props":4958,"children":4959},{},[4960,4965,4970,4975],{"type":24,"tag":545,"props":4961,"children":4962},{},[4963],{"type":29,"value":4964},"在 GA4 中进入管理",{"type":24,"tag":545,"props":4966,"children":4967},{},[4968],{"type":29,"value":4969},"产品关联 → Search Console 链接",{"type":24,"tag":545,"props":4971,"children":4972},{},[4973],{"type":29,"value":4974},"选择对应的 GSC 资源",{"type":24,"tag":545,"props":4976,"children":4977},{},[4978],{"type":29,"value":4979},"完成关联",{"type":24,"tag":36,"props":4981,"children":4982},{},[4983,4988],{"type":24,"tag":142,"props":4984,"children":4985},{},[4986],{"type":29,"value":4987},"关联后的好处",{"type":29,"value":3121},{"type":24,"tag":601,"props":4990,"children":4991},{},[4992,4997,5002],{"type":24,"tag":545,"props":4993,"children":4994},{},[4995],{"type":29,"value":4996},"在 GA4 中查看搜索查询数据",{"type":24,"tag":545,"props":4998,"children":4999},{},[5000],{"type":29,"value":5001},"结合用户行为分析搜索流量",{"type":24,"tag":545,"props":5003,"children":5004},{},[5005],{"type":29,"value":5006},"更完整的转化归因",{"type":24,"tag":62,"props":5008,"children":5010},{"id":5009},"gsc-looker-studio",[5011],{"type":29,"value":5012},"GSC + Looker Studio",{"type":24,"tag":36,"props":5014,"children":5015},{},[5016],{"type":29,"value":5017},"使用 Looker Studio（原 Google Data Studio）创建自动化报告。",{"type":24,"tag":36,"props":5019,"children":5020},{},[5021,5026],{"type":24,"tag":142,"props":5022,"children":5023},{},[5024],{"type":29,"value":5025},"典型仪表板包含",{"type":29,"value":3121},{"type":24,"tag":601,"props":5028,"children":5029},{},[5030,5035,5040,5045],{"type":24,"tag":545,"props":5031,"children":5032},{},[5033],{"type":29,"value":5034},"每周搜索流量趋势",{"type":24,"tag":545,"props":5036,"children":5037},{},[5038],{"type":29,"value":5039},"Top 10 关键词和页面",{"type":24,"tag":545,"props":5041,"children":5042},{},[5043],{"type":29,"value":5044},"问题警报（错误数量变化）",{"type":24,"tag":545,"props":5046,"children":5047},{},[5048],{"type":29,"value":5049},"核心网页指标状态",{"type":24,"tag":25,"props":5051,"children":5053},{"id":5052},"常见问题解答",[5054],{"type":29,"value":5052},{"type":24,"tag":36,"props":5056,"children":5057},{},[5058,5063],{"type":24,"tag":142,"props":5059,"children":5060},{},[5061],{"type":29,"value":5062},"Q: 数据需要多久才能在 GSC 中显示？",{"type":29,"value":5064},"\nA: 通常需要 2-3 天。GSC 的数据不是实时的，有一定延迟。最新可用数据通常是 2 天前的。",{"type":24,"tag":36,"props":5066,"children":5067},{},[5068,5073],{"type":24,"tag":142,"props":5069,"children":5070},{},[5071],{"type":29,"value":5072},"Q: 为什么我的某些页面显示\"已抓取，目前未被编入索引\"？",{"type":29,"value":5074},"\nA: 这通常意味着 Google 抓取了页面但认为不值得索引。可能原因包括：内容质量不够、与已索引页面过于相似、网站整体权重较低等。解决方法是提升内容质量和唯一性。",{"type":24,"tag":36,"props":5076,"children":5077},{},[5078,5083],{"type":24,"tag":142,"props":5079,"children":5080},{},[5081],{"type":29,"value":5082},"Q: 可以删除 GSC 中的旧数据吗？",{"type":29,"value":5084},"\nA: 不可以。GSC 会保留 16 个月的数据，这些数据无法删除。但已删除页面的数据会随时间自然消失。",{"type":24,"tag":36,"props":5086,"children":5087},{},[5088,5093],{"type":24,"tag":142,"props":5089,"children":5090},{},[5091],{"type":29,"value":5092},"Q: 多个人可以访问同一个 GSC 资源吗？",{"type":29,"value":5094},"\nA: 可以。在设置 → 用户和权限中可以添加其他用户，并设置他们的权限级别（完全、受限、只读）。",{"type":24,"tag":36,"props":5096,"children":5097},{},[5098,5103],{"type":24,"tag":142,"props":5099,"children":5100},{},[5101],{"type":29,"value":5102},"Q: GSC 的数据和第三方工具差异很大怎么办？",{"type":29,"value":5104},"\nA: GSC 的数据是最权威的，因为它直接来自 Google。第三方工具的数据是估算的。如果差异很大，以 GSC 为准。",{"type":24,"tag":25,"props":5106,"children":5108},{"id":5107},"行动清单",[5109],{"type":29,"value":5107},{"type":24,"tag":36,"props":5111,"children":5112},{},[5113],{"type":29,"value":5114},"完成本指南的学习后，建议按以下步骤行动：",{"type":24,"tag":36,"props":5116,"children":5117},{},[5118],{"type":24,"tag":142,"props":5119,"children":5120},{},[5121],{"type":29,"value":5122},"第一周：基础设置",{"type":24,"tag":601,"props":5124,"children":5126},{"className":5125},[1473],[5127,5136,5145],{"type":24,"tag":545,"props":5128,"children":5130},{"className":5129},[1478],[5131,5134],{"type":24,"tag":1481,"props":5132,"children":5133},{"disabled":18,"type":1483},[],{"type":29,"value":5135}," 验证网站（推荐使用网域资源）",{"type":24,"tag":545,"props":5137,"children":5139},{"className":5138},[1478],[5140,5143],{"type":24,"tag":1481,"props":5141,"children":5142},{"disabled":18,"type":1483},[],{"type":29,"value":5144}," 提交 Sitemap",{"type":24,"tag":545,"props":5146,"children":5148},{"className":5147},[1478],[5149,5152],{"type":24,"tag":1481,"props":5150,"children":5151},{"disabled":18,"type":1483},[],{"type":29,"value":5153}," 关联 Google Analytics",{"type":24,"tag":36,"props":5155,"children":5156},{},[5157],{"type":24,"tag":142,"props":5158,"children":5159},{},[5160],{"type":29,"value":5161},"第二周：数据探索",{"type":24,"tag":601,"props":5163,"children":5165},{"className":5164},[1473],[5166,5175,5184],{"type":24,"tag":545,"props":5167,"children":5169},{"className":5168},[1478],[5170,5173],{"type":24,"tag":1481,"props":5171,"children":5172},{"disabled":18,"type":1483},[],{"type":29,"value":5174}," 熟悉效果报告的各项功能",{"type":24,"tag":545,"props":5176,"children":5178},{"className":5177},[1478],[5179,5182],{"type":24,"tag":1481,"props":5180,"children":5181},{"disabled":18,"type":1483},[],{"type":29,"value":5183}," 找出表现最好的 10 个页面",{"type":24,"tag":545,"props":5185,"children":5187},{"className":5186},[1478],[5188,5191],{"type":24,"tag":1481,"props":5189,"children":5190},{"disabled":18,"type":1483},[],{"type":29,"value":5192}," 找出表现最好的 10 个关键词",{"type":24,"tag":36,"props":5194,"children":5195},{},[5196],{"type":24,"tag":142,"props":5197,"children":5198},{},[5199],{"type":29,"value":5200},"第三周：问题排查",{"type":24,"tag":601,"props":5202,"children":5204},{"className":5203},[1473],[5205,5214,5223],{"type":24,"tag":545,"props":5206,"children":5208},{"className":5207},[1478],[5209,5212],{"type":24,"tag":1481,"props":5210,"children":5211},{"disabled":18,"type":1483},[],{"type":29,"value":5213}," 检查索引覆盖报告的错误",{"type":24,"tag":545,"props":5215,"children":5217},{"className":5216},[1478],[5218,5221],{"type":24,"tag":1481,"props":5219,"children":5220},{"disabled":18,"type":1483},[],{"type":29,"value":5222}," 查看移动设备易用性问题",{"type":24,"tag":545,"props":5224,"children":5226},{"className":5225},[1478],[5227,5230],{"type":24,"tag":1481,"props":5228,"children":5229},{"disabled":18,"type":1483},[],{"type":29,"value":5231}," 评估核心网页指标状态",{"type":24,"tag":36,"props":5233,"children":5234},{},[5235],{"type":24,"tag":142,"props":5236,"children":5237},{},[5238],{"type":29,"value":592},{"type":24,"tag":601,"props":5240,"children":5242},{"className":5241},[1473],[5243,5252,5261],{"type":24,"tag":545,"props":5244,"children":5246},{"className":5245},[1478],[5247,5250],{"type":24,"tag":1481,"props":5248,"children":5249},{"disabled":18,"type":1483},[],{"type":29,"value":5251}," 每周查看效果报告变化",{"type":24,"tag":545,"props":5253,"children":5255},{"className":5254},[1478],[5256,5259],{"type":24,"tag":1481,"props":5257,"children":5258},{"disabled":18,"type":1483},[],{"type":29,"value":5260}," 每月检查索引和技术问题",{"type":24,"tag":545,"props":5262,"children":5264},{"className":5263},[1478],[5265,5268],{"type":24,"tag":1481,"props":5266,"children":5267},{"disabled":18,"type":1483},[],{"type":29,"value":5269}," 每季度进行深度数据分析",{"type":24,"tag":25,"props":5271,"children":5272},{"id":532},[5273],{"type":29,"value":532},{"type":24,"tag":36,"props":5275,"children":5276},{},[5277],{"type":29,"value":5278},"Google Search Console 是每个网站必备的 SEO 工具。它免费提供了 Google 如何看待你网站的第一手数据，是制定 SEO 策略不可或缺的信息来源。",{"type":24,"tag":36,"props":5280,"children":5281},{},[5282,5287],{"type":24,"tag":142,"props":5283,"children":5284},{},[5285],{"type":29,"value":5286},"核心要点回顾",{"type":29,"value":3121},{"type":24,"tag":541,"props":5289,"children":5290},{},[5291,5301,5311,5320,5330],{"type":24,"tag":545,"props":5292,"children":5293},{},[5294,5299],{"type":24,"tag":142,"props":5295,"children":5296},{},[5297],{"type":29,"value":5298},"正确设置",{"type":29,"value":5300},"：选择合适的资源类型，完成验证，提交 Sitemap",{"type":24,"tag":545,"props":5302,"children":5303},{},[5304,5309],{"type":24,"tag":142,"props":5305,"children":5306},{},[5307],{"type":29,"value":5308},"定期监控",{"type":29,"value":5310},"：效果报告反映搜索表现，索引报告反映技术健康",{"type":24,"tag":545,"props":5312,"children":5313},{},[5314,5318],{"type":24,"tag":142,"props":5315,"children":5316},{},[5317],{"type":29,"value":552},{"type":29,"value":5319},"：用 GSC 数据指导优化决策，而不是凭感觉",{"type":24,"tag":545,"props":5321,"children":5322},{},[5323,5328],{"type":24,"tag":142,"props":5324,"children":5325},{},[5326],{"type":29,"value":5327},"问题处理",{"type":29,"value":5329},"：及时发现和解决索引、移动端、性能等问题",{"type":24,"tag":545,"props":5331,"children":5332},{},[5333,5338],{"type":24,"tag":142,"props":5334,"children":5335},{},[5336],{"type":29,"value":5337},"持续学习",{"type":29,"value":5339},"：GSC 功能不断更新，保持关注",{"type":24,"tag":36,"props":5341,"children":5342},{},[5343,5345,5350],{"type":29,"value":5344},"记住：",{"type":24,"tag":142,"props":5346,"children":5347},{},[5348],{"type":29,"value":5349},"再强大的工具，也需要持续使用才能发挥价值",{"type":29,"value":5351},"。建议将 GSC 检查纳入日常/周度工作流程，让数据真正驱动你的 SEO 决策。",{"type":24,"tag":25,"props":5353,"children":5355},{"id":5354},"参考资源",[5356],{"type":29,"value":5354},{"type":24,"tag":601,"props":5358,"children":5359},{},[5360,5370,5380],{"type":24,"tag":545,"props":5361,"children":5362},{},[5363],{"type":24,"tag":608,"props":5364,"children":5367},{"href":5365,"rel":5366},"https://support.google.com/webmasters",[612],[5368],{"type":29,"value":5369},"Google Search Console 官方帮助文档",{"type":24,"tag":545,"props":5371,"children":5372},{},[5373],{"type":24,"tag":608,"props":5374,"children":5377},{"href":5375,"rel":5376},"https://developers.google.com/search/blog",[612],[5378],{"type":29,"value":5379},"Google 搜索中心博客",{"type":24,"tag":545,"props":5381,"children":5382},{},[5383],{"type":24,"tag":608,"props":5384,"children":5387},{"href":5385,"rel":5386},"https://www.youtube.com/playlist?list=PLKoqnv2vTMUOnQn-lNDfT38X9gA_CHxTo",[612],[5388],{"type":29,"value":5389},"Search Console Training",{"title":7,"searchDepth":647,"depth":647,"links":5391},[5392,5393,5394,5398,5404,5412,5419,5423,5424,5425,5426],{"id":2733,"depth":650,"text":2736},{"id":32,"depth":650,"text":32},{"id":2753,"depth":650,"text":2756,"children":5395},[5396,5397],{"id":2759,"depth":647,"text":2762},{"id":2822,"depth":647,"text":2825},{"id":2974,"depth":650,"text":2977,"children":5399},[5400,5401,5402,5403],{"id":2980,"depth":647,"text":2983},{"id":3010,"depth":647,"text":3013},{"id":3142,"depth":647,"text":3145},{"id":3241,"depth":647,"text":3241},{"id":3333,"depth":650,"text":3333,"children":5405},[5406,5407,5408,5409,5410,5411],{"id":3343,"depth":647,"text":3346},{"id":3737,"depth":647,"text":3740},{"id":3877,"depth":647,"text":3880},{"id":4114,"depth":647,"text":4117},{"id":4288,"depth":647,"text":4291},{"id":4413,"depth":647,"text":4416},{"id":4603,"depth":650,"text":4603,"children":5413},[5414,5415,5416,5417,5418],{"id":4608,"depth":647,"text":4611},{"id":4678,"depth":647,"text":4681},{"id":4739,"depth":647,"text":4742},{"id":4804,"depth":647,"text":4807},{"id":4869,"depth":647,"text":4872},{"id":4934,"depth":650,"text":4934,"children":5420},[5421,5422],{"id":4939,"depth":647,"text":4942},{"id":5009,"depth":647,"text":5012},{"id":5052,"depth":650,"text":5052},{"id":5107,"depth":650,"text":5107},{"id":532,"depth":650,"text":532},{"id":5354,"depth":650,"text":5354},"content:topics:seo:google-search-console-guide.md","topics/seo/google-search-console-guide.md","topics/seo/google-search-console-guide",{"_path":4,"_dir":5,"_draft":6,"_partial":6,"_locale":7,"title":8,"description":9,"date":10,"topic":5,"author":11,"tags":5431,"image":17,"featured":18,"readingTime":19,"body":5432,"_type":679,"_id":680,"_source":681,"_file":682,"_stem":683,"_extension":684},[13,14,15,16],{"type":21,"children":5433,"toc":5940},[5434,5438,5442,5446,5450,5457,5461,5465,5473,5477,5484,5488,5492,5624,5628,5724,5728,5736,5740,5748,5752,5756,5763,5767,5774,5778,5786,5790,5794,5801,5805,5812,5816,5820,5827,5831,5839,5843,5850,5854,5858,5901,5905],{"type":24,"tag":25,"props":5435,"children":5436},{"id":8},[5437],{"type":29,"value":8},{"type":24,"tag":25,"props":5439,"children":5440},{"id":32},[5441],{"type":29,"value":32},{"type":24,"tag":36,"props":5443,"children":5444},{},[5445],{"type":29,"value":40},{"type":24,"tag":25,"props":5447,"children":5448},{"id":43},[5449],{"type":29,"value":43},{"type":24,"tag":47,"props":5451,"children":5452},{"code":49},[5453],{"type":24,"tag":52,"props":5454,"children":5455},{"__ignoreMap":7},[5456],{"type":29,"value":49},{"type":24,"tag":25,"props":5458,"children":5459},{"id":58},[5460],{"type":29,"value":58},{"type":24,"tag":62,"props":5462,"children":5463},{"id":64},[5464],{"type":29,"value":64},{"type":24,"tag":47,"props":5466,"children":5468},{"code":69,"language":70,"meta":7,"className":5467},[72],[5469],{"type":24,"tag":52,"props":5470,"children":5471},{"__ignoreMap":7},[5472],{"type":29,"value":69},{"type":24,"tag":62,"props":5474,"children":5475},{"id":80},[5476],{"type":29,"value":80},{"type":24,"tag":47,"props":5478,"children":5479},{"code":85},[5480],{"type":24,"tag":52,"props":5481,"children":5482},{"__ignoreMap":7},[5483],{"type":29,"value":85},{"type":24,"tag":25,"props":5485,"children":5486},{"id":93},[5487],{"type":29,"value":93},{"type":24,"tag":62,"props":5489,"children":5490},{"id":98},[5491],{"type":29,"value":101},{"type":24,"tag":103,"props":5493,"children":5494},{},[5495,5513],{"type":24,"tag":107,"props":5496,"children":5497},{},[5498],{"type":24,"tag":111,"props":5499,"children":5500},{},[5501,5505,5509],{"type":24,"tag":115,"props":5502,"children":5503},{},[5504],{"type":29,"value":119},{"type":24,"tag":115,"props":5506,"children":5507},{},[5508],{"type":29,"value":124},{"type":24,"tag":115,"props":5510,"children":5511},{},[5512],{"type":29,"value":129},{"type":24,"tag":131,"props":5514,"children":5515},{},[5516,5534,5552,5570,5588,5606],{"type":24,"tag":111,"props":5517,"children":5518},{},[5519,5526,5530],{"type":24,"tag":138,"props":5520,"children":5521},{},[5522],{"type":24,"tag":142,"props":5523,"children":5524},{},[5525],{"type":29,"value":146},{"type":24,"tag":138,"props":5527,"children":5528},{},[5529],{"type":29,"value":151},{"type":24,"tag":138,"props":5531,"children":5532},{},[5533],{"type":29,"value":156},{"type":24,"tag":111,"props":5535,"children":5536},{},[5537,5544,5548],{"type":24,"tag":138,"props":5538,"children":5539},{},[5540],{"type":24,"tag":142,"props":5541,"children":5542},{},[5543],{"type":29,"value":167},{"type":24,"tag":138,"props":5545,"children":5546},{},[5547],{"type":29,"value":172},{"type":24,"tag":138,"props":5549,"children":5550},{},[5551],{"type":29,"value":177},{"type":24,"tag":111,"props":5553,"children":5554},{},[5555,5562,5566],{"type":24,"tag":138,"props":5556,"children":5557},{},[5558],{"type":24,"tag":142,"props":5559,"children":5560},{},[5561],{"type":29,"value":188},{"type":24,"tag":138,"props":5563,"children":5564},{},[5565],{"type":29,"value":193},{"type":24,"tag":138,"props":5567,"children":5568},{},[5569],{"type":29,"value":198},{"type":24,"tag":111,"props":5571,"children":5572},{},[5573,5580,5584],{"type":24,"tag":138,"props":5574,"children":5575},{},[5576],{"type":24,"tag":142,"props":5577,"children":5578},{},[5579],{"type":29,"value":209},{"type":24,"tag":138,"props":5581,"children":5582},{},[5583],{"type":29,"value":214},{"type":24,"tag":138,"props":5585,"children":5586},{},[5587],{"type":29,"value":219},{"type":24,"tag":111,"props":5589,"children":5590},{},[5591,5598,5602],{"type":24,"tag":138,"props":5592,"children":5593},{},[5594],{"type":24,"tag":142,"props":5595,"children":5596},{},[5597],{"type":29,"value":230},{"type":24,"tag":138,"props":5599,"children":5600},{},[5601],{"type":29,"value":235},{"type":24,"tag":138,"props":5603,"children":5604},{},[5605],{"type":29,"value":240},{"type":24,"tag":111,"props":5607,"children":5608},{},[5609,5616,5620],{"type":24,"tag":138,"props":5610,"children":5611},{},[5612],{"type":24,"tag":142,"props":5613,"children":5614},{},[5615],{"type":29,"value":251},{"type":24,"tag":138,"props":5617,"children":5618},{},[5619],{"type":29,"value":256},{"type":24,"tag":138,"props":5621,"children":5622},{},[5623],{"type":29,"value":261},{"type":24,"tag":62,"props":5625,"children":5626},{"id":264},[5627],{"type":29,"value":267},{"type":24,"tag":103,"props":5629,"children":5630},{},[5631,5649],{"type":24,"tag":107,"props":5632,"children":5633},{},[5634],{"type":24,"tag":111,"props":5635,"children":5636},{},[5637,5641,5645],{"type":24,"tag":115,"props":5638,"children":5639},{},[5640],{"type":29,"value":119},{"type":24,"tag":115,"props":5642,"children":5643},{},[5644],{"type":29,"value":285},{"type":24,"tag":115,"props":5646,"children":5647},{},[5648],{"type":29,"value":290},{"type":24,"tag":131,"props":5650,"children":5651},{},[5652,5670,5688,5706],{"type":24,"tag":111,"props":5653,"children":5654},{},[5655,5662,5666],{"type":24,"tag":138,"props":5656,"children":5657},{},[5658],{"type":24,"tag":142,"props":5659,"children":5660},{},[5661],{"type":29,"value":304},{"type":24,"tag":138,"props":5663,"children":5664},{},[5665],{"type":29,"value":309},{"type":24,"tag":138,"props":5667,"children":5668},{},[5669],{"type":29,"value":314},{"type":24,"tag":111,"props":5671,"children":5672},{},[5673,5680,5684],{"type":24,"tag":138,"props":5674,"children":5675},{},[5676],{"type":24,"tag":142,"props":5677,"children":5678},{},[5679],{"type":29,"value":325},{"type":24,"tag":138,"props":5681,"children":5682},{},[5683],{"type":29,"value":309},{"type":24,"tag":138,"props":5685,"children":5686},{},[5687],{"type":29,"value":334},{"type":24,"tag":111,"props":5689,"children":5690},{},[5691,5698,5702],{"type":24,"tag":138,"props":5692,"children":5693},{},[5694],{"type":24,"tag":142,"props":5695,"children":5696},{},[5697],{"type":29,"value":345},{"type":24,"tag":138,"props":5699,"children":5700},{},[5701],{"type":29,"value":309},{"type":24,"tag":138,"props":5703,"children":5704},{},[5705],{"type":29,"value":354},{"type":24,"tag":111,"props":5707,"children":5708},{},[5709,5716,5720],{"type":24,"tag":138,"props":5710,"children":5711},{},[5712],{"type":24,"tag":142,"props":5713,"children":5714},{},[5715],{"type":29,"value":365},{"type":24,"tag":138,"props":5717,"children":5718},{},[5719],{"type":29,"value":370},{"type":24,"tag":138,"props":5721,"children":5722},{},[5723],{"type":29,"value":375},{"type":24,"tag":62,"props":5725,"children":5726},{"id":378},[5727],{"type":29,"value":381},{"type":24,"tag":47,"props":5729,"children":5731},{"code":384,"language":70,"meta":7,"className":5730},[72],[5732],{"type":24,"tag":52,"props":5733,"children":5734},{"__ignoreMap":7},[5735],{"type":29,"value":384},{"type":24,"tag":62,"props":5737,"children":5738},{"id":393},[5739],{"type":29,"value":396},{"type":24,"tag":47,"props":5741,"children":5743},{"code":399,"language":70,"meta":7,"className":5742},[72],[5744],{"type":24,"tag":52,"props":5745,"children":5746},{"__ignoreMap":7},[5747],{"type":29,"value":399},{"type":24,"tag":25,"props":5749,"children":5750},{"id":408},[5751],{"type":29,"value":408},{"type":24,"tag":62,"props":5753,"children":5754},{"id":413},[5755],{"type":29,"value":413},{"type":24,"tag":47,"props":5757,"children":5758},{"code":418},[5759],{"type":24,"tag":52,"props":5760,"children":5761},{"__ignoreMap":7},[5762],{"type":29,"value":418},{"type":24,"tag":62,"props":5764,"children":5765},{"id":426},[5766],{"type":29,"value":426},{"type":24,"tag":47,"props":5768,"children":5769},{"code":431},[5770],{"type":24,"tag":52,"props":5771,"children":5772},{"__ignoreMap":7},[5773],{"type":29,"value":431},{"type":24,"tag":62,"props":5775,"children":5776},{"id":439},[5777],{"type":29,"value":439},{"type":24,"tag":47,"props":5779,"children":5781},{"code":444,"language":70,"meta":7,"className":5780},[72],[5782],{"type":24,"tag":52,"props":5783,"children":5784},{"__ignoreMap":7},[5785],{"type":29,"value":444},{"type":24,"tag":25,"props":5787,"children":5788},{"id":453},[5789],{"type":29,"value":453},{"type":24,"tag":62,"props":5791,"children":5792},{"id":458},[5793],{"type":29,"value":458},{"type":24,"tag":47,"props":5795,"children":5796},{"code":463},[5797],{"type":24,"tag":52,"props":5798,"children":5799},{"__ignoreMap":7},[5800],{"type":29,"value":463},{"type":24,"tag":62,"props":5802,"children":5803},{"id":471},[5804],{"type":29,"value":474},{"type":24,"tag":47,"props":5806,"children":5807},{"code":477},[5808],{"type":24,"tag":52,"props":5809,"children":5810},{"__ignoreMap":7},[5811],{"type":29,"value":477},{"type":24,"tag":25,"props":5813,"children":5814},{"id":485},[5815],{"type":29,"value":488},{"type":24,"tag":62,"props":5817,"children":5818},{"id":491},[5819],{"type":29,"value":494},{"type":24,"tag":47,"props":5821,"children":5822},{"code":497},[5823],{"type":24,"tag":52,"props":5824,"children":5825},{"__ignoreMap":7},[5826],{"type":29,"value":497},{"type":24,"tag":25,"props":5828,"children":5829},{"id":505},[5830],{"type":29,"value":505},{"type":24,"tag":47,"props":5832,"children":5834},{"code":510,"language":70,"meta":7,"className":5833},[72],[5835],{"type":24,"tag":52,"props":5836,"children":5837},{"__ignoreMap":7},[5838],{"type":29,"value":510},{"type":24,"tag":25,"props":5840,"children":5841},{"id":519},[5842],{"type":29,"value":519},{"type":24,"tag":47,"props":5844,"children":5845},{"code":524},[5846],{"type":24,"tag":52,"props":5847,"children":5848},{"__ignoreMap":7},[5849],{"type":29,"value":524},{"type":24,"tag":25,"props":5851,"children":5852},{"id":532},[5853],{"type":29,"value":532},{"type":24,"tag":36,"props":5855,"children":5856},{},[5857],{"type":29,"value":539},{"type":24,"tag":541,"props":5859,"children":5860},{},[5861,5869,5877,5885,5893],{"type":24,"tag":545,"props":5862,"children":5863},{},[5864,5868],{"type":24,"tag":142,"props":5865,"children":5866},{},[5867],{"type":29,"value":552},{"type":29,"value":554},{"type":24,"tag":545,"props":5870,"children":5871},{},[5872,5876],{"type":24,"tag":142,"props":5873,"children":5874},{},[5875],{"type":29,"value":562},{"type":29,"value":564},{"type":24,"tag":545,"props":5878,"children":5879},{},[5880,5884],{"type":24,"tag":142,"props":5881,"children":5882},{},[5883],{"type":29,"value":572},{"type":29,"value":574},{"type":24,"tag":545,"props":5886,"children":5887},{},[5888,5892],{"type":24,"tag":142,"props":5889,"children":5890},{},[5891],{"type":29,"value":582},{"type":29,"value":584},{"type":24,"tag":545,"props":5894,"children":5895},{},[5896,5900],{"type":24,"tag":142,"props":5897,"children":5898},{},[5899],{"type":29,"value":592},{"type":29,"value":594},{"type":24,"tag":25,"props":5902,"children":5903},{"id":597},[5904],{"type":29,"value":597},{"type":24,"tag":601,"props":5906,"children":5907},{},[5908,5916,5924,5932],{"type":24,"tag":545,"props":5909,"children":5910},{},[5911],{"type":24,"tag":608,"props":5912,"children":5914},{"href":610,"rel":5913},[612],[5915],{"type":29,"value":615},{"type":24,"tag":545,"props":5917,"children":5918},{},[5919],{"type":24,"tag":608,"props":5920,"children":5922},{"href":621,"rel":5921},[612],[5923],{"type":29,"value":625},{"type":24,"tag":545,"props":5925,"children":5926},{},[5927],{"type":24,"tag":608,"props":5928,"children":5930},{"href":631,"rel":5929},[612],[5931],{"type":29,"value":635},{"type":24,"tag":545,"props":5933,"children":5934},{},[5935],{"type":24,"tag":608,"props":5936,"children":5938},{"href":641,"rel":5937},[612],[5939],{"type":29,"value":645},{"title":7,"searchDepth":647,"depth":647,"links":5941},[5942,5943,5944,5945,5949,5955,5960,5964,5967,5968,5969,5970],{"id":8,"depth":650,"text":8},{"id":32,"depth":650,"text":32},{"id":43,"depth":650,"text":43},{"id":58,"depth":650,"text":58,"children":5946},[5947,5948],{"id":64,"depth":647,"text":64},{"id":80,"depth":647,"text":80},{"id":93,"depth":650,"text":93,"children":5950},[5951,5952,5953,5954],{"id":98,"depth":647,"text":101},{"id":264,"depth":647,"text":267},{"id":378,"depth":647,"text":381},{"id":393,"depth":647,"text":396},{"id":408,"depth":650,"text":408,"children":5956},[5957,5958,5959],{"id":413,"depth":647,"text":413},{"id":426,"depth":647,"text":426},{"id":439,"depth":647,"text":439},{"id":453,"depth":650,"text":453,"children":5961},[5962,5963],{"id":458,"depth":647,"text":458},{"id":471,"depth":647,"text":474},{"id":485,"depth":650,"text":488,"children":5965},[5966],{"id":491,"depth":647,"text":494},{"id":505,"depth":650,"text":505},{"id":519,"depth":650,"text":519},{"id":532,"depth":650,"text":532},{"id":597,"depth":650,"text":597},1778574605765]