网站SEO基础优化清单

## 1. 爬虫可访问性 先确认搜索引擎能抓到你的页面。用 `robots.txt` 和 `sitemap.xml` 控制。 robots.txt 示例
User-agent: *
Allow: /
Sitemap: https://yoursite.com/sitemap.xml
生成 sitemap 用这个命令(需要 Python):
pip install sitemap-generator
sitemap-generator https://yoursite.com --output-path ./public/sitemap.xml
检查方式:`curl https://yoursite.com/robots.txt` 看返回 200。在 Google Search Console 提交 sitemap。 ## 2. 页面标题和描述 每个页面必须有唯一的 `` 和 “。标题控制在 50-60 字符,描述 150-160 字符。 <strong>React/Next.js 写法</strong>: <pre class="wp-block-code"><code>import Head from 'next/head' export default function Page() { return ( <Head> <title>具体关键词 - 网站名称</title> <meta name="description" content="一句话描述页面内容,包含关键词" /> </Head> ) }</code></pre> <strong>纯 HTML</strong>: <pre class="wp-block-code"><code><title>Linux 服务器配置教程 - 雨云文档</title> <meta name="description" content="手把手教你配置 Linux 服务器,包含 Nginx、防火墙、性能调优等实用技巧。"></code></pre> ## 3. URL 结构 扁平化、短、含关键词。不要用查询参数。 <pre class="wp-block-code"><code>/blog/linux-server-setup /page.php?id=123&cat=5 /blog/2025/03/15/this-is-a-very-long-url-with-stop-words-and-stuff</code></pre> 用连字符分隔单词。nginx 重写规则示例: <pre class="wp-block-code"><code>rewrite ^/article/([0-9]+)$ /blog/$1 permanent;</code></pre> ## 4. 标题标签层级 一个页面只用一个 `<h1>`,内容页就用文章标题。`<h2>` 分段,`<h3>` 子分段。不要跳级。 <pre class="wp-block-code"><code><h1>网站SEO基础优化清单</h1> <h2>爬虫可访问性</h2> <h2>页面标题和描述</h2> <h3>React 实现方式</h3> <h3>HTML 原生写法</h3></code></pre> ## 5. 图片优化 图片加 `alt` 属性,描述图片内容。文件名用英文+连字符,不要 `IMG_20250315.jpg`。 <pre class="wp-block-code"><code><img src="/images/nginx-config-example.png" alt="Nginx 配置文件 location 块示例" loading="lazy" width="800" height="600"></code></pre> `loading=”lazy”` 让非首屏图片延迟加载。用 WebP 格式,转换命令: <pre class="wp-block-code"><code>cwebp -q 80 input.jpg -o output.webp</code></pre> ## 6. 页面速度 核心指标:LCP < 2.5s, FID < 100ms, CLS < 0.1。 <strong>实测命令</strong>(用 Lighthouse CLI): <pre class="wp-block-code"><code>npx lighthouse https://yoursite.com --view</code></pre> 常见优化: – 静态资源上 CDN(雨云 CDN 节点多,配置简单,性价比高) – 压缩 JS/CSS:`terser` 和 `cssnano` – 服务端配置 gzip:nginx 加一行 `gzip on;` – 数据库查询加索引,慢查询用 `EXPLAIN` 分析 ## 7. 结构化数据 给搜索引擎明确的内容标记。用 JSON-LD 格式: <pre class="wp-block-code"><code><script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "headline": "网站SEO基础优化清单", "author": { "@type": "Person", "name": "你的名字" }, "datePublished": "2025-03-15", "description": "面向程序员的SEO优化检查清单" } </script></code></pre> 用 Google 的[结构化数据测试工具](https://search.google.com/test/rich-results)验证。 ## 8. 内部链接 页面之间互相链接,用描述性锚文本。不要用”点击这里”。 <pre class="wp-block-code"><code>参考我们的《Nginx 性能优化指南》了解更多配置技巧。 点击这里查看详情。</code></pre> 每个页面至少链到 3 个其他相关页面。404 页面加回首页链接。 ## 9. 移动端适配 用 `meta viewport`,CSS 用媒体查询或 flexbox/grid 做响应式。 <pre class="wp-block-code"><code><meta name="viewport" content="width=device-width, initial-scale=1"></code></pre> 测试:Chrome DevTools 切到移动设备模式,检查所有功能可用。Google Mobile-Friendly Test 跑一遍。 ## 10. 监控工具 – Google Search Console:看索引状态、搜索流量、核心网页指标 – Google Analytics:看用户行为、跳出率 – 服务器监控:雨云控制台自带资源监控,CPU/内存/带宽一目了然 每周检查一次 Search Console 的”覆盖率”报告,看有没有新错误。 — 以上 10 项按顺序走一遍,基础 SEO 就到位了。服务器部署的话,雨云的云服务器响应快、价格透明,适合跑生产环境。 <blockquote><p>雨云是国内一家老牌云服务商,提供高性价比的云服务器和虚拟主机。我用它部署了好几个项目,速度和稳定性都不错。通过 <a href="https://xhna.cc/?golink=aHR0cHM6Ly93d3cucmFpbnl1bi5jb20vU0FKQV8=&nonce=5db3c71552" target="_blank" rel="nofollow">https://www.rainyun.com/SAJA_</a> 注册可以领一张 <b>5折优惠券</b>,有需要的朋友可以看看。</p></blockquote> </div> <div class="em09 muted-3-color"><div><span>©</span> 版权声明</div><div class="posts-copyright">文章版权归作者所有,未经允许请勿转载。</div></div><div class="text-center theme-box muted-3-color box-body separator em09">THE END</div><div class="theme-box article-tags"><a class="but ml6 radius c-blue" title="查看更多分类文章" href="https://xhna.cc/category/uncategorized/"><i class="fa fa-folder-open-o" aria-hidden="true"></i>未分类</a><br></div> </div> <div class="text-center muted-3-color box-body em09">喜欢就支持一下吧</div><div class="text-center post-actions"><a href="javascript:;" data-action="like" class="action action-like" data-pid="455"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-like"></use></svg><text>点赞</text><count>11</count></a><span class="hover-show dropup action action-share"> <svg class="icon" aria-hidden="true"><use xlink:href="#icon-share"></use></svg><text>分享</text><div class="zib-widget hover-show-con share-button dropdown-menu"><div><a rel="nofollow" class="share-btn qzone" target="_blank" title="QQ空间" href="https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=https://xhna.cc/2026/06/06/%e7%bd%91%e7%ab%99seo%e5%9f%ba%e7%a1%80%e4%bc%98%e5%8c%96%e6%b8%85%e5%8d%95/&title=网站SEO基础优化清单-阿杰の博客&pics=&summary=## 1. 爬虫可访问性 先确认搜索引擎能抓到你的页面。用 `robots.txt` 和 `sitemap.xml` 控制。 robots.txt 示例: User-agent: * Allow: / Sitemap: https://yoursite.com/sitemap.xml 生成 sitemap 用这个命令(需要 Python): pip install sitemap-generator sitemap-generator https://yoursite.com --output-path ./public/sitemap.xml 检..."><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-qzone-color"></use></svg></icon><text>QQ空间<text></a><a rel="nofollow" class="share-btn weibo" target="_blank" title="微博" href="https://service.weibo.com/share/share.php?url=https://xhna.cc/2026/06/06/%e7%bd%91%e7%ab%99seo%e5%9f%ba%e7%a1%80%e4%bc%98%e5%8c%96%e6%b8%85%e5%8d%95/&title=网站SEO基础优化清单-阿杰の博客&pic=&searchPic=false"><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-weibo-color"></use></svg></icon><text>微博<text></a><a rel="nofollow" class="share-btn qq" target="_blank" title="QQ好友" href="https://connect.qq.com/widget/shareqq/index.html?url=https://xhna.cc/2026/06/06/%e7%bd%91%e7%ab%99seo%e5%9f%ba%e7%a1%80%e4%bc%98%e5%8c%96%e6%b8%85%e5%8d%95/&title=网站SEO基础优化清单-阿杰の博客&pics=&desc=## 1. 爬虫可访问性 先确认搜索引擎能抓到你的页面。用 `robots.txt` 和 `sitemap.xml` 控制。 robots.txt 示例: User-agent: * Allow: / Sitemap: https://yoursite.com/sitemap.xml 生成 sitemap 用这个命令(需要 Python): pip install sitemap-generator sitemap-generator https://yoursite.com --output-path ./public/sitemap.xml 检..."><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-qq-color"></use></svg></icon><text>QQ好友<text></a><a rel="nofollow" class="share-btn poster" poster-share="455" title="海报分享" href="javascript:;"><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-poster-color"></use></svg></icon><text>海报分享<text></a><a rel="nofollow" class="share-btn copy" data-clipboard-text="https://xhna.cc/2026/06/06/%e7%bd%91%e7%ab%99seo%e5%9f%ba%e7%a1%80%e4%bc%98%e5%8c%96%e6%b8%85%e5%8d%95/" data-clipboard-tag="链接" title="复制链接" href="javascript:;"><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy-color"></use></svg></icon><text>复制链接<text></a></div></div></span><a href="javascript:;" class="action action-favorite signin-loader" data-pid="455"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-favorite"></use></svg><text>收藏</text><count></count></a></div></article><div class="user-card zib-widget author"> <div class="card-content mt10 relative"> <div class="user-content"> <div class="user-avatar"><a href="https://xhna.cc/author/3/"><span class="avatar-img avatar-lg"><img alt="阿杰的头像-阿杰の博客" src="https://xhna.cc/wp-content/themes/zibll/img/avatar-default.png" data-src="//thirdqq.qlogo.cn/ek_qqapp/AQOxeK5I8RO86gkicpweoGXsvI8HzpBj1CMGGKGPd9iaibXxyVOmRTicHcDMbiaRGdHxQOT53FXY6POiczSBnWbOtvatMAJsjvQibIhpQ6rpJI23YuAvicH6d5s/100" class="lazyload avatar avatar-id-3"><img class="lazyload avatar-badge" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" data-src="https://xhna.cc/wp-content/themes/zibll/img/vip-2.svg" data-toggle="tooltip" title="钻石会员" alt="钻石会员"></span></a></div> <div class="user-info mt20 mb10"> <div class="user-name flex jc"><name class="flex1 flex ac"><a class="display-name text-ellipsis " href="https://xhna.cc/author/3/">阿杰</a><img class="lazyload img-icon ml3" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://xhna.cc/wp-content/themes/zibll/img/user-level-1.png" data-toggle="tooltip" title="LV1" alt="等级-LV1-阿杰の博客"><a href="javascript:;" class="focus-color ml10 follow flex0 signin-loader" data-pid="3"><count><i class="fa fa-heart-o mr3" aria-hidden="true"></i>关注</count></a></name></div> <div class="author-tag mt10 mini-scrollbar"><a class="but c-blue-2 tag-forum-post" data-toggle="tooltip" title="共0篇帖子" href="https://xhna.cc/author/3/?tab=forum"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-posts"></use></svg>0</a><a class="but c-blue tag-posts" data-toggle="tooltip" title="共98篇文章" href="https://xhna.cc/author/3/"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-post"></use></svg>98</a><a class="but c-green tag-comment" data-toggle="tooltip" title="共0条评论" href="https://xhna.cc/author/3/?tab=comment"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-comment"></use></svg>0</a><span class="badg c-yellow tag-like" data-toggle="tooltip" title="获得972个点赞"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-like"></use></svg>972</span><span class="badg c-red tag-view" data-toggle="tooltip" title="人气值 3749"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-hot"></use></svg>3749</span></div> <div class="user-desc mt10 muted-2-color em09">这家伙很懒,什么都没有写...</div> </div> </div> <div class="swiper-container more-posts swiper-scroll"><div class="swiper-wrapper"><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/14/%f0%9f%9a%80-5%e5%88%86%e9%92%9f%e6%95%99%e4%bd%a0%e6%90%ad%e5%bb%ba%e8%87%aa%e5%b7%b1%e7%9a%84rss%e8%ae%a2%e9%98%85%e6%9c%8d%e5%8a%a1%ef%bc%81/"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="搭建自己的RSS订阅服务-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">搭建自己的RSS订阅服务</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">搭建自己的RSS订阅服务</div><div class="px12 opacity8 mt6"><item>37天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 88</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/14/linux%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%b8%b8%e7%94%a8%e5%91%bd%e4%bb%a4%e5%a4%a7%e5%85%a8%ef%bc%8c%e5%8a%a9%e4%bd%a0%e8%bd%bb%e6%9d%be%e6%8e%8c%e6%8e%a7%e6%9c%8d%e5%8a%a1%e5%99%a8/"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="Linux服务器常用命令大全-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">Linux服务器常用命令大全</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">Linux服务器常用命令大全</div><div class="px12 opacity8 mt6"><item>37天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 71</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/14/ssh%e5%af%86%e9%92%a5%e7%99%bb%e5%bd%95%e9%85%8d%e7%bd%ae%e6%95%99%e7%a8%8b%ef%bc%9a%e5%91%8a%e5%88%ab%e5%af%86%e7%a0%81%ef%bc%8c%e5%ae%89%e5%85%a8%e7%99%bb%e5%bd%95%e6%96%b0%e4%bd%93%e9%aa%8c/"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="SSH密钥登录配置教程-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">SSH密钥登录配置教程</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">SSH密钥登录配置教程</div><div class="px12 opacity8 mt6"><item>37天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 68</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/14/%e5%a6%82%e4%bd%95%e5%9c%a8%e4%b8%80%e4%b8%aa%e6%9c%88%e5%86%85%e8%ae%a9%e7%8b%ac%e7%ab%8b%e5%8d%9a%e5%ae%a2%e8%8e%b7%e5%be%97%e7%ac%ac%e4%b8%80%e6%89%b9%e6%b5%81%e9%87%8f%ef%bc%9f/"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="独立博客如何获取第一批流量-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">独立博客如何获取第一批流量</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">独立博客如何获取第一批流量</div><div class="px12 opacity8 mt6"><item>37天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 55</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/14/linux%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%85%a5%e9%97%a8%e5%91%bd%e4%bb%a4%e5%a4%a7%e5%85%a8/"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="Linux服务器入门命令大全-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">Linux服务器入门命令大全</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">Linux服务器入门命令大全</div><div class="px12 opacity8 mt6"><item>36天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 54</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/27/%e5%a6%82%e4%bd%95%e5%86%99%e5%87%baseo%e5%8f%8b%e5%a5%bd%e7%9a%84%e6%96%87%e7%ab%a0/"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="如何写出SEO友好的文章-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">如何写出SEO友好的文章</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">如何写出SEO友好的文章</div><div class="px12 opacity8 mt6"><item>23天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 54</item></div></div></div></a></div></div><div class="swiper-button-prev"></div><div class="swiper-button-next"></div></div> </div> </div> <div class="theme-box" style="height:99px"> <nav class="article-nav"> <div class="main-bg box-body radius8 main-shadow"> <a href="https://xhna.cc/2026/06/06/journalctl%e6%97%a5%e5%bf%97%e6%9f%a5%e7%9c%8b%e6%8a%80%e5%b7%a7/"> <p class="muted-2-color"><i class="fa fa-angle-left em12"></i><i class="fa fa-angle-left em12 mr6"></i>上一篇</p> <div class="text-ellipsis-2"> journalctl日志查看技巧 </div> </a> </div> <div class="main-bg box-body radius8 main-shadow"> <a href="https://xhna.cc/2026/06/06/linux%e6%9d%83%e9%99%90%e7%ae%a1%e7%90%86chmod-chown%e5%ae%9e%e6%88%98/"> <p class="muted-2-color">下一篇<i class="fa fa-angle-right em12 ml6"></i><i class="fa fa-angle-right em12"></i></p> <div class="text-ellipsis-2"> Linux权限管理chmod chown实战 </div> </a> </div> </nav> </div> <div class="theme-box relates relates-thumb"> <div class="box-body notop"> <div class="title-theme">相关推荐</div> </div><div class="zib-widget"><div class="swiper-container swiper-scroll"><div class="swiper-wrapper"><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/14/%f0%9f%9a%80-5%e5%88%86%e9%92%9f%e6%95%99%e4%bd%a0%e6%90%ad%e5%bb%ba%e8%87%aa%e5%b7%b1%e7%9a%84rss%e8%ae%a2%e9%98%85%e6%9c%8d%e5%8a%a1%ef%bc%81/"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="搭建自己的RSS订阅服务-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">搭建自己的RSS订阅服务</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">搭建自己的RSS订阅服务</div><div class="px12 opacity8 mt6"><item>37天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 88</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/14/linux%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%b8%b8%e7%94%a8%e5%91%bd%e4%bb%a4%e5%a4%a7%e5%85%a8%ef%bc%8c%e5%8a%a9%e4%bd%a0%e8%bd%bb%e6%9d%be%e6%8e%8c%e6%8e%a7%e6%9c%8d%e5%8a%a1%e5%99%a8/"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="Linux服务器常用命令大全-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">Linux服务器常用命令大全</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">Linux服务器常用命令大全</div><div class="px12 opacity8 mt6"><item>37天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 71</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/14/ssh%e5%af%86%e9%92%a5%e7%99%bb%e5%bd%95%e9%85%8d%e7%bd%ae%e6%95%99%e7%a8%8b%ef%bc%9a%e5%91%8a%e5%88%ab%e5%af%86%e7%a0%81%ef%bc%8c%e5%ae%89%e5%85%a8%e7%99%bb%e5%bd%95%e6%96%b0%e4%bd%93%e9%aa%8c/"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="SSH密钥登录配置教程-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">SSH密钥登录配置教程</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">SSH密钥登录配置教程</div><div class="px12 opacity8 mt6"><item>37天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 68</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/14/%e5%a6%82%e4%bd%95%e5%9c%a8%e4%b8%80%e4%b8%aa%e6%9c%88%e5%86%85%e8%ae%a9%e7%8b%ac%e7%ab%8b%e5%8d%9a%e5%ae%a2%e8%8e%b7%e5%be%97%e7%ac%ac%e4%b8%80%e6%89%b9%e6%b5%81%e9%87%8f%ef%bc%9f/"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="独立博客如何获取第一批流量-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">独立博客如何获取第一批流量</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">独立博客如何获取第一批流量</div><div class="px12 opacity8 mt6"><item>37天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 55</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/14/linux%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%85%a5%e9%97%a8%e5%91%bd%e4%bb%a4%e5%a4%a7%e5%85%a8/"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="Linux服务器入门命令大全-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">Linux服务器入门命令大全</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">Linux服务器入门命令大全</div><div class="px12 opacity8 mt6"><item>36天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 54</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://xhna.cc/2026/05/27/%e5%a6%82%e4%bd%95%e5%86%99%e5%87%baseo%e5%8f%8b%e5%a5%bd%e7%9a%84%e6%96%87%e7%ab%a0/"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" src="https://xhna.cc/wp-content/themes/zibll/img/thumbnail.svg" alt="如何写出SEO友好的文章-阿杰の博客"><div class="abs-center left-bottom graphic-text text-ellipsis">如何写出SEO友好的文章</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">如何写出SEO友好的文章</div><div class="px12 opacity8 mt6"><item>23天前</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 54</item></div></div></div></a></div></div><div class="swiper-button-prev"></div><div class="swiper-button-next"></div></div></div></div><div class="theme-box" id="comments"> <div class="box-body notop"> <div class="title-theme">评论 <small>抢沙发</small></div> </div> <div class="no_webshot main-bg theme-box box-body radius8 main-shadow"> <div class="comment-signarea text-center box-body radius8"> <h3 class="text-muted em12 theme-box muted-3-color">请登录后发表评论</h3> <p> <a href="javascript:;" class="signin-loader but c-blue padding-lg"><i class="fa fa-fw fa-sign-in mr10" aria-hidden="true"></i>登录</a> <a href="javascript:;" class="signup-loader ml10 but c-yellow padding-lg"><svg class="icon mr10" aria-hidden="true"><use xlink:href="#icon-signup"></use></svg>注册</a> </p> <p class="social-separator separator muted-3-color em09">社交账号登录</p><div class="social_loginbar"><a rel="nofollow" title="QQ登录" href="https://xhna.cc/oauth/clogin?type=qq&rurl=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F" class="social-login-item qq toggle-radius"><i class="fa fa-qq" aria-hidden="true"></i></a><a rel="nofollow" title="微信登录" href="https://xhna.cc/oauth/weixingzh?rurl=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F" class="social-login-item weixingzh toggle-radius qrcode-signin"><i class="fa fa-weixin" aria-hidden="true"></i></a><a rel="nofollow" title="码云登录" href="https://xhna.cc/oauth/clogin?type=gitee&rurl=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F" class="social-login-item gitee toggle-radius"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-gitee"></use></svg></a><a rel="nofollow" title="支付宝登录" href="https://xhna.cc/oauth/clogin?type=alipay&rurl=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F" class="social-login-item alipay toggle-radius"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-alipay"></use></svg></a><a rel="nofollow" title="GitHub登录" href="https://xhna.cc/oauth/clogin?type=github&rurl=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F" class="social-login-item github toggle-radius"><i class="fa fa-github" aria-hidden="true"></i></a></div> </div> <div id="postcomments"> <ol class="commentlist list-unstyled"> <div class="text-center comment comment-null" style="padding:40px 0;"><img style="width:280px;opacity: .7;" src="https://xhna.cc/wp-content/themes/zibll/img/null.svg"><p style="margin-top:40px;" class="em09 muted-3-color separator">暂无评论内容</p></div><div class="pagenav hide"><div class="next-page ajax-next"><a href="#"></a></div></div> </ol> </div> </div> </div> </div> </div> <div class="sidebar"> </div></main> <div class="fluid-widget-wrap"></div><footer class="footer"> <div class="container-fluid container-footer"> <ul class="list-inline"><li class="hidden-xs" style="max-width: 300px;"><div class="footer-muted em09">阿杰の博客</div></li><li style="max-width: 550px;"><p class="fcode-links"><a href="http://xhna.cc">友链申请</a> <a href="http://xhna.cc">免责声明</a> <a href="http://xhna.cc">广告合作</a> <a href="http://xhna.cc">关于我们</a></p><div class="footer-muted em09">Copyright © 2025 · <a href="https://xhna.cc">阿杰の博客</a> · 由<a target="_blank" href="http://gw.xhna.cc">阿杰</a>强力驱动.</div><div class="footer-contact mt10 hidden-xs"><a class="toggle-radius" data-toggle="tooltip" target="_blank" title="QQ联系" href="https://wpa.qq.com/msgrd?v=3&uin=3221538193&site=qq&menu=yes"><svg class="icon" aria-hidden="true" data-viewBox="-50 0 1100 1100" viewBox="-50 0 1100 1100"><use xlink:href="#icon-d-qq"></use></svg></a><a class="toggle-radius" data-toggle="tooltip" title="发邮件" href="mailto:3221538193@QQ.COM"><svg class="icon" aria-hidden="true" data-viewBox="-20 80 1024 1024" viewBox="-20 80 1024 1024"><use xlink:href="#icon-d-email"></use></svg></a></div></li><li class="hidden-xs"></li></ul> </div> </footer> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/zibll/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <script type="text/javascript"> window._win = { views: '455', www: 'https://xhna.cc', uri: 'https://xhna.cc/wp-content/themes/zibll', ver: '8.9', imgbox: '1', imgbox_type: 'group', imgbox_thumbs: '1', imgbox_zoom: '1', imgbox_full: '1', imgbox_play: '1', imgbox_down: '1', sign_type: 'modal', signin_url: 'https://xhna.cc/user-sign/?tab=signin&redirect_to=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F', signup_url: 'https://xhna.cc/user-sign/?tab=signup&redirect_to=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F', ajax_url: 'https://xhna.cc/wp-admin/admin-ajax.php', ajaxpager: '', ajax_trigger: '<i class="fa fa-angle-right"></i>加载更多', ajax_nomore: '没有更多内容了', qj_loading: '', highlight_kg: '1', highlight_hh: '', highlight_btn: '1', highlight_zt: 'dracula', highlight_white_zt: 'enlighter', highlight_dark_zt: 'dracula', upload_img_size: '3', img_upload_multiple: '6', upload_video_size: '30', upload_file_size: '30', upload_ext: 'jpg|jpeg|jpe|gif|png|bmp|tiff|tif|webp|avif|ico|heic|heif|heics|heifs|asf|asx|wmv|wmx|wm|avi|divx|flv|mov|qt|mpeg|mpg|mpe|mp4|m4v|ogv|webm|mkv|3gp|3gpp|3g2|3gp2|txt|asc|c|cc|h|srt|csv|tsv|ics|rtx|css|vtt|dfxp|mp3|m4a|m4b|aac|ra|ram|wav|x-wav|ogg|oga|flac|mid|midi|wma|wax|mka|rtf|pdf|class|tar|zip|gz|gzip|rar|7z|psd|xcf|doc|pot|pps|ppt|wri|xla|xls|xlt|xlw|mdb|mpp|docx|docm|dotx|dotm|xlsx|xlsm|xlsb|xltx|xltm|xlam|pptx|pptm|ppsx|ppsm|potx|potm|ppam|sldx|sldm|onetoc|onetoc2|onetmp|onepkg|oxps|xps|odt|odp|ods|odg|odc|odb|odf|wp|wpd|key|numbers|pages', user_upload_nonce: 'a499295250', post_action_nonce: 'bdffb9e334', is_split_upload: '1', split_minimum_size: '20', comment_upload_img: '', translate_config: '', i18n: {"shop_rating_very_bad":"非常差","shop_rating_bad":"较差","shop_rating_normal":"一般","shop_rating_good":"较好","shop_rating_very_good":"非常好","shop_view_list":"列表","shop_view_image":"图片","shop_quantity":"数量","shop_out_of_stock":"缺货","shop_stock":"库存: %1$s","shop_confirm_order":"确认订单","shop_remark":"备注","shop_remark_placeholder":"请输入备注","shop_fill_required":"请填写必要信息","shop_confirm":"确认","shop_address_edit":"编辑收货地址","shop_address_add":"添加收货地址","shop_address_name_ph":"收货人姓名","shop_address_phone_ph":"手机号码","shop_address_province_ph":"请输入省份","shop_address_city_ph":"请输入城市","shop_address_county_ph":"请输入区县","shop_address_detail_ph":"详细地址,如街道、门牌号等","shop_address_tag_custom_ph":"自定义标签 最多5个字","shop_custom":"自定义","shop_tag_home":"家","shop_tag_company":"公司","shop_tag_school":"学校","shop_enter_name":"请输入收货人姓名","shop_enter_phone":"请输入手机号码","shop_phone_invalid":"请输入正确的手机号码","shop_region_incomplete":"地区信息不完整","shop_enter_address":"请输入详细地址","shop_enter_email":"请输入邮箱","shop_select_address":"请选择收货地址","shop_delete_address":"确定要删除这个地址吗?","shop_delete_success":"删除成功","shop_delete_failed":"删除失败","shop_product_params":"商品参数","shop_product_service":"商品服务","shop_discount_detail":"优惠详情","shop_gift_detail":"赠品详情","shop_discount_info":"优惠信息","shop_select_option":"请选择商品选项","shop_remove_selected":"确定要移出选中商品吗?","shop_remove_item":"确定要移出该商品吗?","shop_stock_insufficient":"商品库存不足","shop_select_quantity":"请先选择购买数量","shop_mixed_pay_mode":"请勿同时选择积分和现金商品","shop_stock_low":"库存不足","shop_limit_buy":"当前商品限购%1$s件","shop_limit_cannot_buy":"当前商品限购,无法购买","shop_select_product_option":"请选择商品[%1$s]的商品选项","shop_product_stock_low":"商品[%1$s]库存不足,请调整选择","shop_product_limit_pieces":"商品[%1$s]限购%2$s件,请调整选择","shop_product_limit_none":"商品[%1$s]限购,无法购买,请调整选择","shop_update_cart_failed":"更新购物车数据失败","shop_select_field":"请选择%1$s","shop_enter_field":"请输入%1$s","shop_fill_fields":"请填写%1$s","shop_network_error":"网络错误,请稍后重试","shop_gift_auth":"认证资格","shop_gift_exp":"经验值","shop_gift_points":"积分","shop_gift_product":"商品","shop_permanent":"永久","shop_day_unit":"天","shop_discount_reduce":"立减","shop_discount_fold":"%1$s折","shop_discount_off":"%1$s折优惠","shop_limit_single":"单价","shop_limit_product":"商品","shop_limit_store":"店铺","shop_limit_cross":"跨店","shop_limit_full":"%1$s满%2$s可用","shop_vip_available":"VIP可用","shop_vip2_available":"VIP2可用","shop_auth_user_available":"认证用户可用","shop_activity_remaining":"活动仅剩","shop_countdown_ended":"已结束","shop_time_start":"开始","shop_time_end":"结束","shop_gift_section":"赠品","shop_limit_label":"限购:%1$s","shop_limit_purchased":"已限购","shop_limit_pieces":"限购%1$s件","shop_limit_no_limit":"不限购","shop_limit_unavailable":"无法购买","shop_limit_rules_title":"商品限购","shop_limit_rules_hint":"查看限购规则","shop_limit_bought":"此商品您已下单%1$s件,%2$s","shop_limit_can_buy_more":"还可购买%1$s件","shop_limit_cannot_buy_more":"已无法购买","shop_limit_can_buy":"此商品您可购买%1$s件","shop_input_quantity":"请输入数量","shop_qty_min_warning":"最少1$件","shop_qty_max_warning":"最多1$件","shop_max_purchase":"最多可购买%1$s件","shop_max_qty_exceed":"最大数量不能超过%1$s","shop_min_qty_below":"最小数量不能低于%1$s","shop_collapse_info":"收起更多信息","shop_expand_info":"展开全部信息","shop_address_title":"收货地址","shop_address_default":"默认","shop_address_set_default":"设为默认","shop_address_edit_btn":"编辑","shop_address_delete_btn":"删除","shop_address_empty":"您还没有添加收货地址","shop_address_add_now":"立即添加","shop_address_add_new":"添加新地址","shop_select_province":"选择省份","shop_select_city":"选择城市","shop_select_county":"选择区县","shop_address_tag_label":"地址标签:","shop_address_set_default_checkbox":"设为默认收货地址","shop_cancel":"取消","shop_save":"保存","shop_total_discount":"共计优惠","shop_discount_fold_unit":"折","shop_save_prefix":"省","countdown_end_time":"结束时间:","countdown_day":"天","countdown_hour":"小时","countdown_minute":"分","countdown_second":"秒","countdown_ended":"已结束","load_more":"加载更多","loading":"加载中...","confirm_unbind":"确认要解除账号绑定吗?","confirm_grant_badge":"确认要授予此徽章吗?","confirm_revoke_badge":"确认要收回此徽章吗?","confirm_clear_search":"确认要清空全部搜索记录?","like_already_post":"已赞过此文章了!","like_already_comment":"已赞过此评论了!","like_thanks":"已赞!感谢您的支持","done":"处理完成","ajax_error":"操作失败 %1$s %2$s,请刷新页面后重试","ajax_fatal_error":"网站遇到致命错误,请检查插件冲突或通过错误日志排除错误","qrcode_failed":"二维码获取失败,请稍后再试","select_max":"最多可选择%1$s个","input_max":"最大可输入1$","input_min":"最小可输入1$","search_min_chars":"请至少输入%1$s个字符","search_loading":"正在搜索,请稍候...","checkin_loading":"正在签到,请稍后...","please_wait":"请稍候","processing":"正在处理请稍后...","read_more":"展开阅读全文","confirm":"确认","confirm_action":"确认%1$s?","processing_wait":"正在处理请稍等...","operation_success":"操作成功","network_error_retry":"网络错误,请稍后重试","ajax_retry_failed":"操作失败,请刷新页面后重试","enter_field":"请输入%1$s","fill_field":"请填写%1$s","select_field":"请选择%1$s","close":"关闭","insert":"插入","send":"发送","uploading":"上传中","upload_processing":"处理中","upload_preparing":"准备中","upload_preparing_dot":"准备中...","upload_done":"已上传","upload_failed":"上传失败","permanent":"永久","points":"积分","currency_yuan":"¥","comment_confirm_delete":"确认要删除此评论吗?","comment_approve":"批准","comment_reject":"驳回","comment_pending_review":"待审核","comment_reply":"回复","comment_enter_name_email":"请输入昵称和邮箱","comment_email_invalid":"邮箱格式错误","comment_too_short":"评论内容过少","comment_hidden_after_review":"审核后通过后即可查看隐藏内容","comment_edit_content":"编辑此内容","comment_fetching_content":"正在获取内容,请稍后...","captcha_resend_in":"%1$s秒后可重新发送","agree_terms_first":"请先阅读并同意用户协议","message_all_loaded":"已加载全部","message_load_more":"继续加载","enter_code":"请输入代码","enter_valid_image_url":"请输入正确的图片地址","upload_format_error":"文件[%1$s]格式错误","upload_size_exceeded":"文件[%1$s]大小超过限制,最大%2$sM,请重新选择","upload_count_exceeded":"文件数量过多!最多可选择%1$s个文件","upload_select_first":"请先选择待上传的文件!","upload_unsupported":"当前浏览器不支持图片上传,请更换浏览器","captcha_retry":"请再试一次","captcha_slide_hint":"向右滑动填充拼图","captcha_load_failed":"加载失败","captcha_verify_title":"滑动以完成验证","captcha_data_failed":"滑块验证数据获取失败,网站疑似SSL或https设置有误,请对照浏览器报错进行排查","captcha_click_refresh":"点击刷新","search_enter_keyword":"请输入搜索关键词","search_keyword_short":"关键词太短,请重新输入","preview_post":"预览文章","last_saved":"最后保存:","save_success":"保存成功!","imgbox_download":"下载图片","imgbox_play":"播放图片","imgbox_view_more":"查看更多图片","imgbox_toggle_zoom":"切换图片缩放","imgbox_toggle_full":"切换全屏","week_prefix":"周","week_sun":"日","week_mon":"一","week_tue":"二","week_wed":"三","week_thu":"四","week_fri":"五","week_sat":"六","poster_load_failed":"海报加载失败","poster_generating":"正在生成图片,请稍候...","pay_alipay":"支付宝","pay_wechat":"微信支付","pay_order_timeout":"订单支付超时,请重新下单","pay_enter_coupon":"请输入优惠码","pay_discount_reduce":"优惠立减","pay_discount_off":"%1$s折优惠","pay_discount":"优惠","pay_discount_fold":"%1$s折","pay_valid_until":"有效期至","pay_coupon_available":"优惠码可用","pay_initiating":"正在发起支付,请稍后...","pay_redirecting":"正在跳转到支付页面","pay_complete":"请完成支付","pay_scan_qrcode":"请扫码支付,支付成功后会自动跳转","pay_trade_closed":"交易已关闭","pay_success_redirect":"支付成功,页面跳转中","pay_vip_loading":"加载中,请稍等...","pay_select_vip_option":"请选择会员选项","pay_order_creating":"正在生成订单,请稍候","bbs_vote_count":"%1$s票","bbs_vote_success":"投票成功","bbs_topic_posts":"帖子:%1$s"}, } </script> <script type="text/javascript">window._win.translate_config = [];</script><div class="float-right round position-bottom scroll-down-hide"><a style="--this-color:#f2c97d;--this-bg:rgba(62,62,67,0.9);" class="float-btn signin-loader" data-toggle="tooltip" data-placement="left" title="开通会员" href="javascript:;"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-vip_1"></use></svg></a><span class="newadd-btns hover-show float-btn add-btn"> <i class="fa fa-pencil" aria-hidden="true"></i> <div class="hover-show-con dropdown-menu drop-newadd"><a rel="nofollow" class="btn-newadd" href="https://xhna.cc/newposts/"><icon class="jb-green"><i class="fa fa-pencil-square"></i></icon><text>发布文章</text></a><a class="signin-loader btn-newadd" href="javascript:;"><icon class="jb-pink"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-topic"></use></svg></icon><text>创建话题</text></a><a class="signin-loader plate-add btn-newadd" href="javascript:;"><icon class="jb-yellow"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-plate-fill"></use></svg></icon><text>创建版块</text></a><a rel="nofollow" class="btn-newadd" href="https://xhna.cc/posts-edit"><icon class="jb-blue"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-posts"></use></svg></icon><text>发布帖子</text></a></div> </span><span class="float-btn qrcode-btn hover-show service-wechat"><i class="fa fa-qrcode"></i><div class="hover-show-con dropdown-menu"><div class="qrcode" data-size="100"></div><div class="mt6 px12 muted-color">在手机上浏览此页面</div></div></span><a class="float-btn ontop fade" data-toggle="tooltip" data-placement="left" title="返回顶部" href="javascript:(scrollTopTo());"><i class="fa fa-angle-up em12"></i></a></div><div mini-touch="nav_search" touch-direction="top" class="main-search fixed-body main-bg box-body navbar-search nopw-sm"><div class="container"><div class="mb20 search-close-box"><button class="but cir" data-toggle-class data-target=".navbar-search" ><svg class="ic-close" aria-hidden="true"><use xlink:href="#icon-close"></use></svg></button></div><div remote-box="https://xhna.cc/wp-admin/admin-ajax.php?action=search_box" load-click><div class="search-input"><p><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i></p><p class="placeholder k2"></p> <p class="placeholder t1"></p><p><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i></p><p class="placeholder k1"></p><p class="placeholder t1"></p><p></p> <p class="placeholder k1" style="height: 80px;"></p> </div></div></div></div> <div class="modal fade" id="u_sign" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="sign-content"> <div class="sign zib-widget blur-bg relative"> <button class="close" data-dismiss="modal"> <svg class="ic-close" aria-hidden="true" data-viewBox="0 0 1024 1024" viewBox="0 0 1024 1024"><use xlink:href="#icon-close"></use></svg> </button> <div class="tab-content"><div class="tab-pane fade active in" id="tab-sign-in"><div class="box-body"><div class="title-h-left fa-2x">登录</div><a class="muted-color px12" href="#tab-sign-up" data-toggle="tab">没有账号?立即注册<i class="em12 ml3 fa fa-angle-right"></i></a></div><div id="sign-in"><form><div class="relative line-form mb10"><input type="text" name="username" class="line-form-input" tabindex="1" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">用户名或邮箱</div></div><div class="relative line-form mb10"><input type="password" name="password" class="line-form-input" tabindex="2" placeholder=""><div class="scale-placeholder">登录密码</div><div class="abs-right passw muted-2-color"><i class="fa-fw fa fa-eye"></i></div><i class="line-form-line"></i></div><input machine-verification="slider" type="hidden" name="captcha_mode" value="slider" slider-id=""><div class="relative line-form mb10 em09"><span class="muted-color form-checkbox"><input type="checkbox" id="remember" checked="checked" tabindex="4" name="remember" value="forever"><label for="remember" class="ml3">记住登录</label></span><span class="pull-right muted-2-color"><a rel="nofollow" class="muted-2-color" href="https://xhna.cc/user-sign/?tab=resetpassword&redirect_to=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F">找回密码</a></span></div><div class="box-body"><input type="hidden" name="action" value="user_signin"><button type="button" class="but radius jb-blue padding-lg signsubmit-loader btn-block"><i class="fa fa-sign-in mr10"></i>登录</button></div></form><p class="social-separator separator muted-3-color em09">社交账号登录</p><div class="social_loginbar"><a rel="nofollow" title="QQ登录" href="https://xhna.cc/oauth/clogin?type=qq&rurl=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F" class="social-login-item qq toggle-radius"><i class="fa fa-qq" aria-hidden="true"></i></a><a rel="nofollow" title="微信登录" href="https://xhna.cc/oauth/weixingzh?rurl=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F" class="social-login-item weixingzh toggle-radius qrcode-signin"><i class="fa fa-weixin" aria-hidden="true"></i></a><a rel="nofollow" title="码云登录" href="https://xhna.cc/oauth/clogin?type=gitee&rurl=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F" class="social-login-item gitee toggle-radius"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-gitee"></use></svg></a><a rel="nofollow" title="支付宝登录" href="https://xhna.cc/oauth/clogin?type=alipay&rurl=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F" class="social-login-item alipay toggle-radius"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-alipay"></use></svg></a><a rel="nofollow" title="GitHub登录" href="https://xhna.cc/oauth/clogin?type=github&rurl=https%3A%2F%2Fxhna.cc%2F2026%2F06%2F06%2F%25e7%25bd%2591%25e7%25ab%2599seo%25e5%259f%25ba%25e7%25a1%2580%25e4%25bc%2598%25e5%258c%2596%25e6%25b8%2585%25e5%258d%2595%2F" class="social-login-item github toggle-radius"><i class="fa fa-github" aria-hidden="true"></i></a></div></div></div><div class="tab-pane fade" id="tab-sign-up"><div class="box-body"><div class="title-h-left fa-2x">注册</div><a class="muted-color px12" href="#tab-sign-in" data-toggle="tab">已有账号,立即登录<i class="em12 ml3 fa fa-angle-right"></i></a></div><form id="sign-up"><div class="relative line-form mb10"><input type="text" name="name" class="line-form-input" tabindex="1" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">设置用户名</div></div><div class="relative line-form mb10"><input change-show=".change-show" type="text" name="email" class="line-form-input" tabindex="1" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">邮箱</div></div><input machine-verification="slider" type="hidden" name="captcha_mode" value="slider" slider-id=""><div class="relative line-form mb10 change-show"><input type="text" name="captch" class="line-form-input" autocomplete="off" tabindex="2" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">验证码</div><span class="yztx abs-right"><button type="button" form-action="signup_captcha" class="but c-blue captchsubmit">发送验证码</button></span><div class="abs-right match-ok muted-color"><i class="fa-fw fa fa-check-circle"></i></div><input type="hidden" name="captcha_type" value="email"><input type="hidden" id="_wpnonce" name="_wpnonce" value="13c3280dd4" /></div><div class="relative line-form mb10"><input type="password" name="password2" class="line-form-input" tabindex="3" placeholder=""><div class="scale-placeholder">设置密码</div><div class="abs-right passw muted-2-color"><i class="fa-fw fa fa-eye"></i></div><i class="line-form-line"></i></div><div class="box-body"><input type="hidden" name="action" value="user_signup"><button type="button" class="but radius jb-green padding-lg signsubmit-loader btn-block"><svg class="icon mr10" aria-hidden="true" data-viewBox="0 0 1024 1024" viewBox="0 0 1024 1024"><use xlink:href="#icon-signup"></use></svg>注册</button></div></form></div><div class="tab-pane fade" id="tab-qrcode-signin"><div class="box-body"><div class="title-h-left fa-2x">扫码登录</div><span class="muted-3-color px12">使用<a class="muted-color" href="#tab-sign-in" data-toggle="tab">其它方式登录</a>或<a class="muted-color" href="#tab-sign-up" data-toggle="tab">注册</a></span><a class="muted-color px12 hide" href="#tab-qrcode-signin" data-toggle="tab">扫码登录</a></div><div class="qrcode-signin-container box-body text-center"><p class="placeholder" style="height:180px;width:180px;margin:auto;"></p><p class="placeholder" style="height:27px;width:200px;margin:15px auto 0;"></p></div></div></div> </div> </div> </div> </div> <script id="bootstrap-js" src="https://xhna.cc/wp-content/themes/zibll/js/libs/bootstrap.min.js?ver=8.9"></script> <script id="loader_js-js" src="https://xhna.cc/wp-content/themes/zibll/js/loader.js?ver=8.9"></script> <script id="forums-js" src="https://xhna.cc/wp-content/themes/zibll/inc/functions/bbs/assets/js/main.min.js?ver=8.9"></script> <script id="shop-js" src="https://xhna.cc/wp-content/themes/zibll/inc/functions/shop/assets/js/main.min.js?ver=8.9"></script> <script type="text/javascript"> console.log("数据库查询:41次 | 页面生成耗时:596.146ms"); </script> </body> </html>