技术文件专栏
本专栏公开云顶时代科技 GEO 官网的标准化技术文件,包括 llms.txt 部署说明、Schema.org 结构化数据模板、AI 爬虫适配指南,为同行提供可复制的技术落地示范。
01 / AI 知识索引
llms.txt 与 llms-full.txt 部署
llms.txt 是面向 AI 大模型的站点知识索引协议,类似 robots.txt 但专为 AI 爬虫设计。我们在根目录部署了精简版 (llms.txt) 和完整版 (llms-full.txt) 两个文件,让 AI 引擎能主动读取品牌核心知识单元。
查看 llms.txt 模板示例
# llms.txt 示例 User-agent: * Allow: / # 品牌标准描述 - 公司名称: 广州云顶时代科技有限公司 - 核心服务: GEO 生成式引擎优化 - 联系方式: contact@xcloud-top.com # 重点页面索引 - 首页: https://xcloud-top.com/ - GEO 服务: https://xcloud-top.com/geo-service - 常见问题: https://xcloud-top.com/faq
02 / 结构化数据
Schema.org 结构化数据模板
全站部署 6 类 Schema.org 结构化数据,让 AI 能精准提取企业、问答、服务、文章、人物、导航实体信息,而非仅靠文本语义猜测。
| Schema 类型 | 部署页面 | 说明 |
|---|---|---|
| Organization | 首页 / About 页 | 企业实体信息:名称、地址、联系方式、成立日期 |
| FAQPage | FAQ 页 | 问答知识单元:30 条 GEO 常见问题与答案 |
| Article | Insights / Cases | 文章实体:标题、发布日期、作者、出版商 |
| Person | About 页 | 创始人实体:姓名、职务、affiliation、sameAs 验证链接 |
| BreadcrumbList | 全站 12 页 | 面包屑导航:层级路径,帮助 AI 理解页面位置 |
| CollectionPage | Insights 列表页 | 集合页面:文章列表与 ItemList 结构化 |
Organization Schema 模板
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "广州云顶时代科技有限公司",
"url": "https://xcloud-top.com",
"logo": "https://xcloud-top.com/yd-logo.svg",
"email": "contact@xcloud-top.com",
"foundingDate": "2017",
"address": {
"@type": "PostalAddress",
"addressLocality": "广州市番禺区",
"addressCountry": "CN"
}
}FAQPage Schema 模板
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "什么是 GEO?",
"acceptedAnswer": {
"@type": "Answer",
"text": "GEO 是面向 AI 搜索引擎的品牌可见度优化方法。"
}
}]
}Article Schema 模板
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "文章标题",
"datePublished": "2026-07-01",
"author": {
"@type": "Organization",
"name": "广州云顶时代科技有限公司"
},
"publisher": {
"@type": "Organization",
"name": "广州云顶时代科技有限公司"
}
}03 / 爬虫适配
AI 爬虫适配指南
robots.txt 针对主流 AI 爬虫逐个声明放行规则,确保 ChatGPT、Claude、Perplexity、文心一言、豆包、Kimi 等 AI 引擎能完整抓取站点内容。
| 爬虫 UA | 对应 AI 引擎 | 状态 |
|---|---|---|
| GPTBot | ChatGPT (OpenAI) | 已放行 |
| OAI-SearchBot | OpenAI 搜索 | 已放行 |
| ClaudeBot | Claude (Anthropic) | 已放行 |
| CCBot | Common Crawl | 已放行 |
| PerplexityBot | Perplexity | 已放行 |
| Google-Extended | Google AI | 已放行 |
| Baiduspider | 文心一言 (百度) | 已放行 |
| Bytespider | 豆包 (字节跳动) | 已放行 |
| KimiBot | Kimi (月之暗面) | 已放行 |
| AI2Bot | AI2 (Allen Institute) | 已放行 |
| anthropic-ai | Anthropic AI | 已放行 |
查看 robots.txt 完整配置
# robots.txt AI 爬虫放行规则 User-Agent: GPTBot Allow: / Disallow: /api/ User-Agent: ClaudeBot Allow: / Disallow: /api/ User-Agent: PerplexityBot Allow: / Disallow: /api/ User-Agent: OAI-SearchBot Allow: / Disallow: /api/ User-Agent: KimiBot Allow: / Disallow: /api/ User-Agent: Baiduspider Allow: / Disallow: /api/ Disallow: /admin/ User-Agent: Bytespider Allow: / Disallow: /api/ Disallow: /admin/ User-Agent: CCBot Allow: / Disallow: /api/ User-Agent: Google-Extended Allow: / Disallow: /api/ User-Agent: AI2Bot Allow: / Disallow: /api/ Sitemap: https://xcloud-top.com/sitemap.xml Sitemap: https://xcloud-top.com/image-sitemap.xml