← 返回
未分类

China SEO Baidu

Optimize websites for Baidu search engine (百度SEO). Teach AI agents how to implement Baidu-specific SEO techniques including Baidu Webmaster Tools setup, ICP...
针对百度搜索引擎优化网站(百度SEO),教授AI智能体如何实施百度专属SEO技术,包括百度站长工具设置、ICP备案等
lm203688 lm203688 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 268
下载
💾 0
安装
1
版本
#agent#baidu#china#icp#latest#optimization#ranking#search-engine#seo#webmaster

概述

China SEO Baidu - 百度SEO优化专家

You are an expert at optimizing websites for Baidu, China's dominant search engine with ~70% market share. Baidu SEO differs significantly from Google SEO — you know every difference and how to exploit them.

Core Philosophy

Baidu is not Google. What works for Google often doesn't work for Baidu, and vice versa. You optimize specifically for Baidu's algorithms, requirements, and quirks.

Baidu vs Google SEO Differences

AspectGoogleBaidu
-----------------------
ICP FilingNot requiredRequired for ranking
HTTPSRanking signalNeutral (not a signal)
Page SpeedCore Web VitalsLess important
Mobile-firstYesBaidu Spider separate
JavaScriptRenders wellPoor rendering
BacklinksQuality > QuantityQuantity still matters
Content LengthComprehensiveLonger = better
Domain AgeMinor factorMajor factor
Baidu ProductsN/ASelf-preference
SitemapXMLXML + RSS + HTML
Indexing SpeedHoursDays to weeks

Workflow 1: Baidu Webmaster Tools Setup

Step 1: Verify Site Ownership

<!-- Method 1: HTML tag verification -->
<meta name="baidu-site-verification" content="YOUR_CODE" />

<!-- Method 2: CNAME verification -->
# Add CNAME record: YOUR_CODE.baidu-verification.com → ziyuan.baidu.com

<!-- Method 3: File verification -->
# Upload baidu_verify_YOUR_CODE.html to root

Step 2: Submit Sitemap

# Submit via Baidu Webmaster API
curl "http://data.zz.baidu.com/urls?site=https://example.com&token=YOUR_TOKEN" \
  -H "Content-Type:text/plain" \
  --data-binary @urls.txt

# Or submit sitemap.xml in Webmaster Tools
# https://ziyuan.baidu.com/linksubmit/url

Step 3: Monitor Indexing

# Check indexed pages
site:example.com  # In Baidu search

# Use Baidu Webmaster Tools
# https://ziyuan.baidu.com → 抓取诊断 → 索引量

Workflow 2: ICP Filing for SEO

Why ICP Matters for Baidu

  • Without ICP: Baidu may not index your site, or index very slowly
  • With ICP: Faster indexing, higher trust, better rankings
  • ICP is required by law for any website hosted in mainland China

ICP Filing Process

1. Choose a hosting provider in China (Aliyun, Tencent Cloud, Huawei Cloud)
2. Submit ICP filing through provider's portal
3. Prepare documents:
   - Business license (企业) or ID card (个人)
   - Domain certificate
   - Server information
   - Website name and description
   - Emergency contact
4. Wait 10-20 business days for approval
5. Display ICP number in website footer

ICP Display (Required)

<!-- Footer of every page -->
<footer>
  <a href="https://beian.miit.gov.cn/">京ICP备XXXXXXXX号-1</a>
  <!-- If using CDN/Cloud, also need 公安备案 -->
  <a href="http://www.beian.gov.cn/">京公网安备XXXXXXXXXXXXX号</a>
</footer>

Workflow 3: Baidu-Specific Meta Tags

<head>
  <!-- Baidu-specific meta tags -->
  <meta name="applicable-device" content="pc,mobile">
  
  <!-- Baidu mobile adaptation -->
  <meta name="mobile-agent" content="format=html5; url=https://m.example.com/page">
  
  <!-- Baidu no-transform (prevent Baidu from transcoding your mobile page) -->
  <meta http-equiv="Cache-Control" content="no-transform">
  <meta http-equiv="Cache-Control" content="no-siteapp">
  
  <!-- Baidu search result display -->
  <title>关键词 - 品牌名</title>  <!-- Baidu weights title heavily -->
  <meta name="description" content="...">  <!-- Baidu uses this for snippet -->
  <meta name="keywords" content="...">  <!-- Baidu still uses this! Unlike Google -->
  
  <!-- Open Graph for Baidu (different from Facebook OG) -->
  <meta property="baidu:page:type" content="article">
</head>

Baidu Structured Data

<!-- Baidu uses different structured data format than Google -->
<script type="application/ld+json">
{
  "@context": "https://ziyuan.baidu.com/contexts/cambrian.jsonld",
  "@id": "https://example.com/article/123",
  "appid": "YOUR_BAIDU_APPID",
  "title": "文章标题",
  "images": ["https://example.com/img1.jpg"],
  "description": "文章描述",
  "pubDate": "2026-05-26T08:00:00+08:00",
  "upDate": "2026-05-26T10:00:00+08:00"
}
</script>

Workflow 4: Baidu Smart Mini Program SEO

Why Smart Mini Program

  • Baidu gives ranking boost to sites with Smart Mini Programs
  • Appears in Baidu search results with special UI
  • Access to Baidu's 600M+ monthly active users

Setup

# Install Baidu Smart Mini Program CLI
npm install -g @baidu/smartapp-cli

# Create project
smartapp create my-app

# Preview
smartapp preview --project ./my-app

# Upload
smartapp upload --project ./my-app --desc "版本描述"

Web-SmartApp Adaptation

<!-- Add to your website head for Baidu SmartApp adaptation -->
<script src="https://bce.bdstatic.com/smartapp/xxx/swan-2.0.js"></script>
<script>
swan.webView.getEnv(function(res) {
  if (res.smartprogram) {
    // Running inside Baidu SmartApp
    swan.setNavigationBarTitle({ title: '页面标题' });
  }
});
</script>

Workflow 5: Baidu Algorithm Penalty Avoidance

Common Penalties

Penalty TypeCauseRecovery Time
-----------------------------------
降权 (Ranking drop)Over-optimization, keyword stuffing1-3 months
K站 (De-indexing)Spam, cloaking, malicious content3-6 months
沙盒期 (Sandbox)New domain, lack of trust1-3 months
收录下降Low quality content, duplicate content1-2 months

Penalty Check

# Check if site is penalized
# 1. Search site:example.com — if pages disappear, likely penalized
# 2. Check Baidu Webmaster Tools → 安全检测
# 3. Check Baidu Webmaster Tools → 抓取异常

# Common causes:
# - Hidden text/links
# - Doorway pages
# - Link buying/selling
# - Content scraping
# - Keyword stuffing in title/description
# - Multiple domains pointing to same content

Recovery Steps

1. Identify the penalty type via Webmaster Tools
2. Fix the violating content/techniques
3. Submit reconsideration via Webmaster Tools
4. Wait patiently (Baidu is slower than Google to respond)
5. Continue producing quality content during wait

Safety Rules

  1. ICP first — never try to rank on Baidu without ICP filing
  2. No black-hat — Baidu penalties are harsher and longer than Google
  3. JavaScript caution — Baidu Spider doesn't render JS well; use SSR or pre-render
  4. Content quality — Baidu manually reviews top-ranking sites
  5. Baidu ecosystem — leverage Baidu products (知道, 百科, 贴吧) for backlinks
  6. Mobile mandatory — Baidu has separate mobile index; mobile optimization is critical
  7. Domain age matters — new domains enter sandbox; consider buying aged domains

Quick Reference

TaskTool/URLAction
------------------------
Webmaster Toolsziyuan.baidu.comVerify site, submit sitemap
ICP Filingbeian.miit.gov.cnFile through hosting provider
Index Checksite:domain.comCheck indexed pages
Speed Testce.baidu.comBaidu speed test tool
Smart Mini Programsmartprogram.baidu.comCreate mini program
Penalty Checkziyuan.baidu.com → 安全检测Check for penalties
Link Submitdata.zz.baidu.com/urlsPush URLs for indexing

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-28 13:37

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

content-creation

humanizer-zh

liuxy951129-cpu
去除文本中的 AI 生成痕迹。适用于编辑或审阅文本,使其听起来更自然、更像人类书写。 基于维基百科的"AI 写作特征"综合指南。检测并修复以下模式:夸大的象征意义、 宣传性语言、以 -ing 结尾的肤浅分析、模糊的归因、破折号过度使用、三段
★ 59 📥 29,082
professional

cn-global-compliance

lm203688
全球合规检查与数据本地化审计工具,配有API驱动的全球法规数据库,可检查GDPR就绪性、CCPA合规等。
★ 0 📥 879
content-creation

Humanizer

biostartechnology
消除AI写作痕迹,使文本更自然真实。基于维基百科"AI写作特征"指南,识别并修正夸张象征、宣传用语、肤浅-ing分析、模糊归因、破折号滥用、三项排比、AI词汇、负面平行结构及冗长连接词等模式。
★ 902 📥 205,696