首页、关于我们、服务页、文章页、案例页、联系页 6 套标准代码,纯 JSON-LD,直接复制改文字、网址、电话、地址就能往网页源码里粘贴,适配 LLM 爬虫、llms.txt、AIWO、AIVO。
使用方法:把整段代码放到页面
<head> 里即可,不用改 HTML 结构。1、首页通用(Organization + 品牌主实体)
<script type="application/ld+json">{
"@context": "https://schema.org",
"@type": "Organization",
"name": "你的公司名称",
"alternateName": "品牌简称",
"description": "公司简介:主营AIVO可见度优化、AIWO网页优化、Schema结构化部署、llms.txt配置、企业官网AI语义优化等服务。",
"url": "https://www.你的域名.com",
"logo": "https://www.你的域名.com/logo.png",
"telephone": "400-xxxx-xxxx",
"email": "xxx@xxx.com",
"foundingDate": "2020",
"sameAs": [
"https://xxx公众号",
"https://xxx抖音",
"https://xxx小红书"
]}</script>2、本地商家版(LocalBusiness 带地址、营业时间,适合 GEO 优化)
<script type="application/ld+json">{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "你的公司名称",
"description": "专注企业AI全域优化、Schema部署、llms.txt搭建、AIWO官网重构、AIVO品牌知识图谱优化。",
"url": "https://www.你的域名.com",
"telephone": "400-xxxx-xxxx",
"address": {
"@type": "PostalAddress",
"streetAddress": "详细街道门牌号",
"addressLocality": "城市",
"addressRegion": "省份",
"postalCode": "邮编",
"addressCountry": "CN"
},
"openingHours": "Mo-Sa 09:00-18:00",
"logo": "https://www.你的域名.com/logo.png"}</script>3、服务页面专用(Service 业务服务结构化)
<script type="application/ld+json">{
"@context": "https://schema.org",
"@type": "Service",
"name": "AIVO&AIWO全域优化服务",
"description": "提供llms.txt编写部署、Schema结构化数据搭建、官网AI语义重构、大模型LLM爬虫适配、品牌AI可见度优化全流程服务。",
"provider": {
"@type": "Organization",
"name": "你的公司名称"
},
"url": "https://www.你的域名.com/service.html",
"serviceType": "AI网站优化、搜索引擎结构化适配"}</script>4、文章 / 资讯页面专用(Article / BlogPosting)
<script type="application/ld+json"><script type="application/ld+json">{
"@context": "https://schema.org",
"@type": "Article",
"headline": "llms.txt与Schema结构化数据配置完整教程",
"description": "详解llms.txt作用、Schema原理、JSON-LD部署方法、AIWO与AIVO协同优化逻辑,助力网站适配大模型爬虫收录。",
"author": {
"@type": "Organization",
"name": "你的公司名称"
},
"publisher": {
"@type": "Organization",
"name": "你的公司名称",
"logo": {
"@type": "ImageObject",
"url": "https://www.你的域名.com/logo.png"
}
},
"datePublished": "2026-05-12",
"dateModified": "2026-05-12",
"url": "https://www.你的域名.com/xxx.html",
"image": "https://www.你的域名.com/article.jpg"}</script>5、案例展示专用(CaseStudy 项目案例)
<script type="application/ld+json">{
"@context": "https://schema.org",
"@type": "CaseStudy",
"name": "企业官网Schema+llms.txtAI优化落地案例",
"description": "为企业完成llms.txt配置、全站Schema结构化标记、AIWO页面语义重构,提升大模型收录与AI问答曝光。",
"url": "https://www.你的域名.com/case.html",
"author": {
"@type": "Organization",
"name": "你的公司名称"
},
"datePublished": "2026-05-12"}</script>6、联系我们页面(ContactPoint 标准联系方式)
<script type="application/ld+json">{
"@context": "https://schema.org",
"@type": "ContactPoint",
"telephone": "400-xxxx-xxxx",
"contactType": "客服、商务合作",
"email": "xxx@xxx.com",
"availableLanguage": ["Chinese"],
"areaServed": "全国"}</script>部署使用要点(必看)
全部用 JSON-LD 格式,兼容搜索引擎 + LLM 大模型 + llms.txt 体系;
每个页面只放对应一套,不要多套混堆;
所有链接、logo、地址、电话必须填真实有效内容;
改完直接放进网页
<head>即可,不影响页面样式;和你之前的 llms.txt 搭配,就是网站 AI 适配双标配。