├── .DS_Store ├── .gitattributes ├── .gitignore ├── .nojekyll ├── INTRODUCTION.md ├── LICENSE ├── README.md ├── _sidebar.md ├── index.html ├── 海外推广 ├── Google SEM │ └── README.md ├── Google SEO │ ├── 99~参考资料 │ │ ├── Awesome SEO │ │ │ └── Awesome SEO.md │ │ ├── README.md │ │ ├── Ranktracker~《SEO 指南》 │ │ │ └── README.md │ │ ├── XNBeast │ │ │ └── 2023~SEO 权威指南.md │ │ ├── 若凡~《SEO 优化》 │ │ │ └── README.md │ │ └── 跨境 Z 世代 │ │ │ └── README.md │ ├── README.md │ ├── SEO HTML 标签优化.md │ ├── SEO 关键字 │ │ ├── README.md │ │ └── 关键字分类 │ │ │ └── 99~参考资料 │ │ │ └── 13 种 SEO 关键词类型.md │ ├── SEO 工具 │ │ ├── Google Analytics │ │ │ └── README.md │ │ ├── Google SearchConsole │ │ │ └── README.md │ │ ├── SEOquake │ │ │ ├── 99~参考资料 │ │ │ │ └── 2022~SEO 分析工具 SEOquake 超详细使用教程.md │ │ │ └── README.md │ │ ├── Semrush │ │ │ └── README.md │ │ └── Yoast SEO │ │ │ └── README.md │ ├── SEO 方法论 │ │ ├── 00~Google SEO 算法 │ │ │ └── 99~参考资料 │ │ │ │ └── 2023~2023 年最完整的谷歌 SEO 算法更新大全.md │ │ ├── 01~On Page 优化 │ │ │ ├── README.md │ │ │ ├── Technical SEO │ │ │ │ ├── 03~网站性能优化 │ │ │ │ │ ├── 01~网站速度检测 │ │ │ │ │ │ ├── Lighthouse.md │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── 02~图片优化 │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── 03~CDN 缓存 │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── 04~CSS & JavaScript 优化 │ │ │ │ │ │ └── README.md │ │ │ │ │ └── 05~懒加载 │ │ │ │ │ │ └── README.md │ │ │ │ ├── README.md │ │ │ │ ├── 移动端优化 │ │ │ │ │ └── README.md │ │ │ │ ├── 网站架构 │ │ │ │ │ ├── 301 重定向 │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── Hreflang 多语言 │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Sitemap 站点地图 │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── URL 格式 │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── canonical 去重 │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── noindex 避免索引 │ │ │ │ │ │ └── README.md │ │ │ │ │ └── 面包屑导航 │ │ │ │ │ │ └── README.md │ │ │ │ └── 页面结构 │ │ │ │ │ └── README.md │ │ │ ├── 内容优化 │ │ │ │ └── README.md │ │ │ └── 用户体验 │ │ │ │ └── README.md │ │ ├── 02~Off Page 优化 │ │ │ └── README.md │ │ ├── 09~自检清单 │ │ │ ├── 2021~Google SEO 诊断清单.md │ │ │ └── Google SEO 自检表格.xlsx │ │ └── 99~参考资料 │ │ │ └── README.md │ ├── robots.txt.md │ ├── 关键字与内容营销 │ │ └── README.md │ └── 站点 SEO 实践 │ │ ├── Shopify SEO 实践 │ │ └── 99~参考资料 │ │ │ └── 2022~完整 Shopify SEO 基础教学.md │ │ └── WordPress SEO 实践 │ │ └── 主题开发 │ │ ├── README.md │ │ ├── 基本模板 │ │ └── README.md │ │ └── 模板构成 │ │ ├── 主题样式表.md │ │ ├── 函数文件.md │ │ └── 模板文件.md ├── 海外客户数据 │ └── 邓白氏码 │ │ └── README.md └── 邮件营销 │ └── 99~参考资料 │ └── 2024~A Deep Dive into Email Deliverability in 2024.md └── 跨境独立站 └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INTRODUCTION.md: -------------------------------------------------------------------------------- 1 | # 本篇导读 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/README.md -------------------------------------------------------------------------------- /_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/_sidebar.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/index.html -------------------------------------------------------------------------------- /海外推广/Google SEM/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/99~参考资料/Awesome SEO/Awesome SEO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/99~参考资料/Awesome SEO/Awesome SEO.md -------------------------------------------------------------------------------- /海外推广/Google SEO/99~参考资料/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/99~参考资料/README.md -------------------------------------------------------------------------------- /海外推广/Google SEO/99~参考资料/Ranktracker~《SEO 指南》/README.md: -------------------------------------------------------------------------------- 1 | > [原文地址](https://www.ranktracker.com/zh/seo-guide/) 2 | -------------------------------------------------------------------------------- /海外推广/Google SEO/99~参考资料/XNBeast/2023~SEO 权威指南.md: -------------------------------------------------------------------------------- 1 | > [原文地址](https://www.xnbeast.com/seo-this-year/) 2 | -------------------------------------------------------------------------------- /海外推广/Google SEO/99~参考资料/若凡~《SEO 优化》/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/99~参考资料/若凡~《SEO 优化》/README.md -------------------------------------------------------------------------------- /海外推广/Google SEO/99~参考资料/跨境 Z 世代/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/README.md: -------------------------------------------------------------------------------- 1 | # SEO 2 | 3 | # Links 4 | 5 | - https://www.zhihu.com/question/24869560/answer/1471446772 6 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO HTML 标签优化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/SEO HTML 标签优化.md -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 关键字/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 关键字/关键字分类/99~参考资料/13 种 SEO 关键词类型.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/SEO 关键字/关键字分类/99~参考资料/13 种 SEO 关键词类型.md -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 工具/Google Analytics/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 工具/Google SearchConsole/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 工具/SEOquake/99~参考资料/2022~SEO 分析工具 SEOquake 超详细使用教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/SEO 工具/SEOquake/99~参考资料/2022~SEO 分析工具 SEOquake 超详细使用教程.md -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 工具/SEOquake/README.md: -------------------------------------------------------------------------------- 1 | # SEOquake 2 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 工具/Semrush/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 工具/Yoast SEO/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/00~Google SEO 算法/99~参考资料/2023~2023 年最完整的谷歌 SEO 算法更新大全.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/SEO 方法论/00~Google SEO 算法/99~参考资料/2023~2023 年最完整的谷歌 SEO 算法更新大全.md -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/03~网站性能优化/01~网站速度检测/Lighthouse.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/03~网站性能优化/01~网站速度检测/README.md: -------------------------------------------------------------------------------- 1 | # 网站速度检测 2 | 3 | 使用 Google PageSpeed Insights、GTmetrix 或者 Pingdom Tools 等进行性能检测; 4 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/03~网站性能优化/02~图片优化/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/03~网站性能优化/03~CDN 缓存/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/03~网站性能优化/04~CSS & JavaScript 优化/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/03~网站性能优化/05~懒加载/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/移动端优化/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/网站架构/301 重定向/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/网站架构/Hreflang 多语言/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/网站架构/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/网站架构/Sitemap 站点地图/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/网站架构/URL 格式/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/网站架构/canonical 去重/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/网站架构/noindex 避免索引/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/网站架构/面包屑导航/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/Technical SEO/页面结构/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/内容优化/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/SEO 方法论/01~On Page 优化/内容优化/README.md -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/01~On Page 优化/用户体验/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/02~Off Page 优化/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/09~自检清单/2021~Google SEO 诊断清单.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/SEO 方法论/09~自检清单/2021~Google SEO 诊断清单.md -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/09~自检清单/Google SEO 自检表格.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/SEO 方法论/09~自检清单/Google SEO 自检表格.xlsx -------------------------------------------------------------------------------- /海外推广/Google SEO/SEO 方法论/99~参考资料/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/Google SEO/robots.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/robots.txt.md -------------------------------------------------------------------------------- /海外推广/Google SEO/关键字与内容营销/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/关键字与内容营销/README.md -------------------------------------------------------------------------------- /海外推广/Google SEO/站点 SEO 实践/Shopify SEO 实践/99~参考资料/2022~完整 Shopify SEO 基础教学.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/站点 SEO 实践/Shopify SEO 实践/99~参考资料/2022~完整 Shopify SEO 基础教学.md -------------------------------------------------------------------------------- /海外推广/Google SEO/站点 SEO 实践/WordPress SEO 实践/主题开发/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/站点 SEO 实践/WordPress SEO 实践/主题开发/README.md -------------------------------------------------------------------------------- /海外推广/Google SEO/站点 SEO 实践/WordPress SEO 实践/主题开发/基本模板/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/站点 SEO 实践/WordPress SEO 实践/主题开发/基本模板/README.md -------------------------------------------------------------------------------- /海外推广/Google SEO/站点 SEO 实践/WordPress SEO 实践/主题开发/模板构成/主题样式表.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/站点 SEO 实践/WordPress SEO 实践/主题开发/模板构成/主题样式表.md -------------------------------------------------------------------------------- /海外推广/Google SEO/站点 SEO 实践/WordPress SEO 实践/主题开发/模板构成/函数文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/站点 SEO 实践/WordPress SEO 实践/主题开发/模板构成/函数文件.md -------------------------------------------------------------------------------- /海外推广/Google SEO/站点 SEO 实践/WordPress SEO 实践/主题开发/模板构成/模板文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/Google SEO/站点 SEO 实践/WordPress SEO 实践/主题开发/模板构成/模板文件.md -------------------------------------------------------------------------------- /海外推广/海外客户数据/邓白氏码/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /海外推广/邮件营销/99~参考资料/2024~A Deep Dive into Email Deliverability in 2024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wx-chevalier/CrossBorder-Notes/HEAD/海外推广/邮件营销/99~参考资料/2024~A Deep Dive into Email Deliverability in 2024.md -------------------------------------------------------------------------------- /跨境独立站/README.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------