Skip to content

Commit adc37cb

Browse files
calderbuildclaude
andcommitted
fix: Resolve Google Search Console indexing issues
根本原因分析: 1. 404错误(36页)- sitemap.xml硬编码了不存在的URL 2. about.html和projects.html位置错误 解决方案: 1. 添加about.html到根目录(从/archive/复制) 2. 添加projects.html到根目录(Portfolio页面) 3. 重构sitemap.xml: - 移除硬编码的URL引用 - 使用Jekyll动态页面发现 - 排除/archive/、/.git/、/doc/等目录 - 自动适配实际存在的页面 影响: - 修复36个404错误 - sitemap仅包含真实可访问的页面 - 提升Google爬虫效率和索引质量 技术细节: - 保留canonical标签配置(head.html:112) - "47个备用页面with canonical"是正常行为(分页、标签页等) - 6个"已爬取未索引"页面需要内容质量优化(后续处理) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 697fb07 commit adc37cb

File tree

3 files changed

+314
-27
lines changed

3 files changed

+314
-27
lines changed

about.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
layout: page
3+
title: "About"
4+
description: "Meet Jason - AI technology researcher, intelligent Agent development expert, and award-winning innovator from Beijing Information Science & Technology University. Discover his journey in artificial intelligence, full-stack development, and groundbreaking hackathon projects including MeetSpot, L'Oréal Data Intelligence Assistant, and Neighborly Help. Explore his technical expertise in machine learning, LLM applications, Agent architecture design, and modern web development. Learn about his passion for creating intelligent solutions that solve real-world problems and his commitment to advancing AI technology through innovation and collaboration."
5+
header-img: "img/bg-me-2022.jpg"
6+
header-mask: 0.3
7+
multilingual: true
8+
---
9+
10+
{% include multilingual-sel.html %}
11+
12+
<!-- Chinese Version -->
13+
<div class="zh post-container">
14+
{% capture about_zh %}{% include about/zh.md %}{% endcapture %}
15+
{{ about_zh | markdownify }}
16+
</div>
17+
18+
<!-- English Version -->
19+
<div class="en post-container">
20+
{% capture about_en %}{% include about/en.md %}{% endcapture %}
21+
{{ about_en | markdownify }}
22+
</div>
23+
24+
25+
{% if site.disqus_username %}
26+
<!-- disqus 评论框 start -->
27+
<div class="comment">
28+
<div id="disqus_thread" class="disqus-thread">
29+
30+
</div>
31+
</div>
32+
<!-- disqus 评论框 end -->
33+
34+
<!-- disqus 公共JS代码 start (一个网页只需插入一次) -->
35+
<script type="text/javascript">
36+
/* * * CONFIGURATION VARIABLES * * */
37+
var disqus_shortname = "{{site.disqus_username}}";
38+
var disqus_identifier = "{{site.disqus_username}}/{{page.url}}";
39+
var disqus_url = "{{site.url}}{{page.url}}";
40+
41+
(function () {
42+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
43+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
44+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
45+
})();
46+
</script>
47+
<!-- disqus 公共JS代码 end -->
48+
{% endif %}

0 commit comments

Comments
 (0)