<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>探索博客</title><link>http://www.94ts.com/</link><description>专注互联网教程笔记与技术分享</description><item><title>完美隐藏服务器IP：宝塔+Nginx四层转发，让SMTP发信“隐身”</title><link>http://www.94ts.com/?id=13</link><description>&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0; text-align: center;&quot;&gt;&lt;img style=&quot;max-width: 100%; height: auto; border-radius: 4px;&quot; src=&quot;http://www.94ts.com/zb_users/upload/2026/06/202606201781968486143798.png&quot; title=&quot;微信图片_20260620231205_579_5.png&quot; alt=&quot;SMTP中转隐藏源站IP架构图&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;📌 适用场景：卡易信、WordPress、各类商城系统等，后台强制锁定SMTP发信地址（如smtp.qq.com），无法修改。同时又不想让邮件接收方（如QQ邮箱）通过Received头追踪到你的源服务器真实IP。&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;✨ 方案核心优势&lt;/h2&gt;&lt;ul style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 20px; padding:0;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;无需修改程序配置：程序后台依然填写smtp.qq.com，全程无感转发，不用改动商城/卡易信后台参数&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;一劳永逸：不依赖特定SMTP服务器固定IP，服务商更换IP也不会失效&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;极致隐蔽：收件方查看邮件源码，仅能看到中转服务器IP，源站真实IP完全隐藏&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;🔧 架构原理&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;我们利用 iptables DNAT 目标地址转换 配合 Nginx 四层（TCP）流式转发，把原本发往外部SMTP的流量强行牵引至中转服务器，实现流量中转。&lt;/p&gt;&lt;pre style=&quot;line-height:1.6;padding:10px;background:#f5f5f5;border-radius:4px;font-size:14px;&quot;&gt;[源服务器:&amp;nbsp;210.98.132.55]
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;1.&amp;nbsp;程序发起连接:&amp;nbsp;smtp.qq.com:465
&amp;nbsp;&amp;nbsp;v
[Hosts&amp;nbsp;劫持:&amp;nbsp;smtp.qq.com&amp;nbsp;-&amp;gt;&amp;nbsp;103.363.9.876]
&amp;nbsp;&amp;nbsp;|
[iptables&amp;nbsp;DNAT:&amp;nbsp;所有465端口流量&amp;nbsp;-&amp;gt;&amp;nbsp;103.363.9.876]
&amp;nbsp;&amp;nbsp;|
&amp;nbsp;&amp;nbsp;v
[香港中转服务器:&amp;nbsp;103.363.9.876]
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;2.&amp;nbsp;Nginx&amp;nbsp;Stream&amp;nbsp;纯TCP透传，不解析加密内容
&amp;nbsp;&amp;nbsp;v
[真实SMTP服务器:&amp;nbsp;smtp.qq.com:465]&lt;/pre&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;📋 准备工作&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;&lt;strong&gt;源服务器（湖北业务机）&lt;/strong&gt;：IP &lt;code&gt;210.98.132.55&lt;/code&gt;，安装宝塔面板，部署卡易信/商城/WordPress程序&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;&lt;strong&gt;中转服务器（香港节点）&lt;/strong&gt;：IP &lt;code&gt;103.363.9.876&lt;/code&gt;，仅IPv4，预装宝塔+Nginx&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;&lt;strong&gt;端口放行&lt;/strong&gt;：香港服务器防火墙、云厂商安全组放行 TCP 465端口&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;第一步：配置香港中转服务器 Nginx四层转发&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;登录香港中转服务器，启用Nginx Stream四层模块，纯透传TCP流量，兼容SMTP加密SSL连接。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;1. 进入宝塔Nginx配置目录：&lt;code&gt;/www/server/panel/vhost/nginx/&lt;/code&gt;，新建配置文件 &lt;code&gt;tcp_smtp_relay.conf&lt;/code&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;2. 写入完整转发规则代码：&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-nginx&quot;&gt;#&amp;nbsp;存放路径：/www/server/panel/vhost/nginx/tcp_smtp_relay.conf
stream&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;自定义日志格式，方便故障排查
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;log_format&amp;nbsp;smtp_proxy&amp;nbsp;&amp;#39;$remote_addr&amp;nbsp;[$time_local]&amp;nbsp;$protocol&amp;nbsp;$status&amp;nbsp;$bytes_sent&amp;nbsp;$bytes_received&amp;nbsp;$session_time&amp;nbsp;&amp;quot;$upstream_addr&amp;quot;&amp;#39;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;上游QQ邮箱SMTP服务池
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;upstream&amp;nbsp;smtp_qq&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;server&amp;nbsp;smtp.qq.com:465;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;监听本机465端口接收转发流量
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;server&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;listen&amp;nbsp;465;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_pass&amp;nbsp;smtp_qq;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;强制使用香港服务器公网IP出站（核心，控制邮件头IP）
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_bind&amp;nbsp;103.363.9.876;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;连接超时参数优化
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_connect_timeout&amp;nbsp;15s;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_timeout&amp;nbsp;300s;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;proxy_buffer_size&amp;nbsp;16k;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;日志存储路径
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;access_log&amp;nbsp;/var/log/nginx/smtp_proxy_access.log&amp;nbsp;smtp_proxy;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;error_log&amp;nbsp;&amp;nbsp;/var/log/nginx/smtp_proxy_error.log&amp;nbsp;warn;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
}&lt;/pre&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 15px 0 8px;&quot;&gt;3. 校验Nginx语法并重载服务&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;#&amp;nbsp;校验配置语法
nginx&amp;nbsp;-t
#&amp;nbsp;重载Nginx生效
systemctl&amp;nbsp;reload&amp;nbsp;nginx
#&amp;nbsp;查看465端口监听状态
ss&amp;nbsp;-lntp&amp;nbsp;|&amp;nbsp;grep&amp;nbsp;465&lt;/pre&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;执行后正常输出 nginx 进程监听465端口即代表中转配置完成。&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;第二步：配置源服务器（双重流量劫持，核心步骤）&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;登录湖北源业务服务器，分两步劫持DNS与内核流量，杜绝程序绕过中转的情况。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;&lt;strong&gt;1. Hosts静态DNS劫持&lt;/strong&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;#&amp;nbsp;编辑hosts文件
vim&amp;nbsp;/etc/hosts&lt;/pre&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;文件末尾追加一行，强制解析smtp.qq.com到中转IP：&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-text&quot;&gt;103.363.9.876&amp;nbsp;smtp.qq.com&lt;/pre&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 15px 0 8px;&quot;&gt;&lt;strong&gt;2. iptables内核DNAT强制转发（兜底方案，防止Hosts失效）&lt;/strong&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;#&amp;nbsp;清空旧nat转发规则
iptables&amp;nbsp;-t&amp;nbsp;nat&amp;nbsp;-F&amp;nbsp;OUTPUT
#&amp;nbsp;核心规则：本机所有TCP&amp;nbsp;465流量全部转发至香港中转机
iptables&amp;nbsp;-t&amp;nbsp;nat&amp;nbsp;-A&amp;nbsp;OUTPUT&amp;nbsp;-p&amp;nbsp;tcp&amp;nbsp;--dport&amp;nbsp;465&amp;nbsp;-j&amp;nbsp;DNAT&amp;nbsp;--to-destination&amp;nbsp;103.363.9.876:465
#&amp;nbsp;放行连接回包，保证TCP链路正常
iptables&amp;nbsp;-I&amp;nbsp;OUTPUT&amp;nbsp;-m&amp;nbsp;conntrack&amp;nbsp;--ctstate&amp;nbsp;ESTABLISHED,RELATED&amp;nbsp;-j&amp;nbsp;ACCEPT
iptables&amp;nbsp;-I&amp;nbsp;FORWARD&amp;nbsp;-m&amp;nbsp;conntrack&amp;nbsp;--ctstate&amp;nbsp;ESTABLISHED,RELATED&amp;nbsp;-j&amp;nbsp;ACCEPT&lt;/pre&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;&lt;strong&gt;3. 持久化防火墙规则（服务器重启不丢失）&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 6px;&quot;&gt;Debian/Ubuntu系统：&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;mkdir&amp;nbsp;-p&amp;nbsp;/etc/iptables
iptables-save&amp;nbsp;&amp;gt;&amp;nbsp;/etc/iptables/rules.v4&lt;/pre&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 6px;&quot;&gt;CentOS系统：&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;service&amp;nbsp;iptables&amp;nbsp;save
#&amp;nbsp;或
iptables-save&amp;nbsp;&amp;gt;&amp;nbsp;/etc/sysconfig/iptables&lt;/pre&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;✅ 第三步：链路效果验证&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;1. 源服务器测试端口连通性&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;nc&amp;nbsp;-vz&amp;nbsp;smtp.qq.com&amp;nbsp;465&lt;/pre&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;正常输出 &lt;code&gt;Connected to smtp.qq.com (103.363.9.876)&lt;/code&gt; 代表劫持生效。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;2. 进入卡易信/商城后台发送测试邮件，接收后查看邮件原始源码。&lt;/p&gt;&lt;div style=&quot;background:#fff3f3;padding:12px 15px;border-radius:6px;margin:15px 0;border-left:4px solid #d92121;&quot;&gt;&lt;p style=&quot;margin:0;line-height:1.8;color:#d92121;font-weight:500;&quot;&gt;❌ 失败效果（暴露源站IP，方案未生效）：&lt;/p&gt;&lt;pre style=&quot;margin:8px 0;padding:8px;background:#fff;border-radius:4px;&quot;&gt;Received:&amp;nbsp;from&amp;nbsp;unknown&amp;nbsp;(HELO&amp;nbsp;localhost)&amp;nbsp;(210.98.132.55)&lt;/pre&gt;&lt;/div&gt;&lt;div style=&quot;background:#f0f9ff;padding:12px 15px;border-radius:6px;margin:15px 0;border-left:4px solid #1976D2;&quot;&gt;&lt;p style=&quot;margin:0;line-height:1.8;color:#1976D2;font-weight:500;&quot;&gt;✅ 成功效果（仅显示中转IP，源站隐藏）：&lt;/p&gt;&lt;pre style=&quot;margin:8px 0;padding:8px;background:#fff;border-radius:4px;&quot;&gt;Received:&amp;nbsp;from&amp;nbsp;localhost&amp;nbsp;([103.363.9.876])
by&amp;nbsp;newxmesmtplogicsvrsz.xxx.qq.com&amp;nbsp;...&lt;/pre&gt;&lt;/div&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;🔍 常见问题排查&lt;/h2&gt;&lt;ul style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 20px; padding:0;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;连接超时 Connection timed out&lt;/strong&gt;：检查香港服务器安全组/防火墙放行465端口、Nginx正常监听465、源站iptables规则无书写错误&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;SMTP认证失败 Authentication failed&lt;/strong&gt;：和转发方案无关，核对QQ邮箱授权码、确认QQ邮箱后台已开启SMTP服务&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Nginx报错 cannot assign requested address&lt;/strong&gt;：检查proxy_bind后填写的IP &lt;code&gt;103.363.9.876&lt;/code&gt; 是否为香港服务器真实网卡公网IP&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;📝 方案总结&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;通过 &lt;strong&gt;Hosts静态劫持 + iptables DNAT内核转发 + Nginx Stream四层TCP透传&lt;/strong&gt; 三层机制搭建SMTP加密流量隧道。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;方案通用性极强，不局限QQ邮箱，Gmail、阿里云企业邮等所有SMTP服务均可适配；全程无需修改商城、卡易信、WordPress等业务程序配置，完美解决强制锁定SMTP地址场景下隐藏源服务器公网IP的需求。&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 35px 0 20px 0;&quot;/&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; font-weight: 500; color: #333; margin:0;&quot;&gt;探索博客 · 运维笔记&lt;/p&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; color: rgb(102, 102, 102); margin: 0px;&quot;&gt;2026年06月&lt;/p&gt;</description><pubDate>Sat, 20 Jun 2026 22:58:21 +0800</pubDate></item><item><title>2026 高考将至｜执笔为剑，落笔生辉，祝全体考生金榜题名</title><link>http://www.94ts.com/?id=12</link><description>&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;盛夏如期，2026年高考正式拉开序幕，无数少年整装待发，奔赴属于自己的人生赛场。过往日复一日的积累沉淀，都将在这个夏天收获答案。&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #d92121; border-left: 4px solid #d92121; padding: 6px 12px; margin: 30px 0 15px 0; background: #fff3f3;&quot;&gt;致奔赴考场的学子&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;放平心态，从容走进考场，正常发挥日常所学就足矣。放平心绪、仔细审题、稳扎稳打，从容写完每一张试卷。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;身边有家人陪伴守候，全城暖心护航，卸下紧张与顾虑，轻松上阵，不留遗憾。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #d92121; border-left: 4px solid #d92121; padding: 6px 12px; margin: 30px 0 15px 0; background: #fff3f3;&quot;&gt;暖心寄语与美好祝愿&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;愿笔下从容，万事顺遂；&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;愿旗开得胜，金榜题名；&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;顺利迈入理想院校，开启崭新的青春旅程。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 30px 0 12px 0;&quot;&gt;高考只是人生路上一处关键路口，无论最终结果怎样，勇敢奔赴考场的每一位少年，都值得被称赞。&lt;/p&gt;&lt;div style=&quot;background:#fff3f3;padding:12px 15px;border-radius:6px;margin:20px 0;&quot;&gt;&lt;p style=&quot;margin:0;line-height:1.8;color:#d92121;font-weight:500;&quot;&gt;祝所有考生：逢考必过，前程似锦！&lt;/p&gt;&lt;/div&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 35px 0 20px 0;&quot;/&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; font-weight: 500; color: #333; margin:0;&quot;&gt;TS博客&lt;/p&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; color: rgb(102, 102, 102); margin: 0px;&quot;&gt;2026年六月&lt;/p&gt;</description><pubDate>Sat, 06 Jun 2026 23:28:40 +0800</pubDate></item><item><title>WordPress配置https(SSL)无法登录后台&amp;amp;页面样式丢失解决方法！</title><link>http://www.94ts.com/?id=11</link><description>&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;前言：&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;最近使用宝塔面板一键部署了WordPress导航网站，网站在HTTP协议下运行一切正常。配置SSL证书并强制HTTPS访问后，出现了后台无法登录、CSS/JS样式文件不加载导致页面错乱、CDN回源504超时等问题。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;本文分享完整的修复方案，无需复杂操作，按照步骤修改即可解决所有HTTPS兼容问题。&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;一、核心修复：修改系统代码文件&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;&lt;strong&gt;步骤1：修改 functions.php 文件&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;打开网站根目录 &lt;code&gt;wp-includes/functions.php&lt;/code&gt;，找到代码 &lt;code&gt;require( ABSPATH . WPINC . &amp;#39;/option.php&amp;#39; );&lt;/code&gt;（约第8行），在下方添加以下代码，修复HTTPS静态资源加载异常：&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-php&quot;&gt;//&amp;nbsp;修复HTTPS静态资源加载问题
add_filter(&amp;#39;script_loader_src&amp;#39;,&amp;nbsp;&amp;#39;agnostic_script_loader_src&amp;#39;,&amp;nbsp;20,2);
function&amp;nbsp;agnostic_script_loader_src($src,&amp;nbsp;$handle)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;preg_replace(&amp;#39;/^(http|https):/&amp;#39;,&amp;nbsp;&amp;#39;&amp;#39;,&amp;nbsp;$src);
}
add_filter(&amp;#39;style_loader_src&amp;#39;,&amp;nbsp;&amp;#39;agnostic_style_loader_src&amp;#39;,&amp;nbsp;20,2);
function&amp;nbsp;agnostic_style_loader_src($src,&amp;nbsp;$handle)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;preg_replace(&amp;#39;/^(http|https):/&amp;#39;,&amp;nbsp;&amp;#39;&amp;#39;,&amp;nbsp;$src);
}&lt;/pre&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 15px 0 8px;&quot;&gt;&lt;strong&gt;步骤2：完整替换 wp-config.php 配置文件&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;wp-config.php 是WordPress核心配置文件，手动添加代码容易出错。为了新手操作更简单、不报错，直接将下方完整代码复制，&lt;strong&gt;替换网站根目录原 wp-config.php 的全部内容&lt;/strong&gt;，即可强制开启HTTPS、适配CDN、修复后台登录问题：&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-php&quot;&gt;P*#&amp;nbsp;Jg,&amp;gt;3/]afnL&amp;#39;&amp;nbsp;);
define(&amp;nbsp;&amp;#39;SECURE_AUTH_KEY&amp;#39;,&amp;nbsp;&amp;nbsp;&amp;#39;&amp;amp;!PZ)LWc-j#C~ay$8N$`}OU2qH01;R;P,l;qj+1lhlYB^b8km^b:Daj&amp;amp;!QO-qm3m&amp;#39;&amp;nbsp;);
define(&amp;nbsp;&amp;#39;LOGGED_IN_KEY&amp;#39;,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;k^VK_EEif%5.Af4D*9uc::97^RTU?S-2xy7a!SO]&amp;amp;cRzfD/^AgZwnyT(7y#YW38L&amp;#39;&amp;nbsp;);
define(&amp;nbsp;&amp;#39;NONCE_KEY&amp;#39;,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;w=gY{S,vlp#0*{Mc+KR[vF~*4o-cAvt&amp;amp;hTdkU!@]Tmm$Znm~0s&amp;#39;&amp;nbsp;);
define(&amp;nbsp;&amp;#39;SECURE_AUTH_SALT&amp;#39;,&amp;nbsp;&amp;#39;hKvkvm&amp;amp;o&amp;#39;&amp;nbsp;);
define(&amp;nbsp;&amp;#39;NONCE_SALT&amp;#39;,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;`4Z(G:fq&amp;nbsp;I3XQ9V$!&amp;gt;P2Jf&amp;#39;&amp;nbsp;);

/**#@-*/

/**
&amp;nbsp;*&amp;nbsp;WordPress&amp;nbsp;database&amp;nbsp;table&amp;nbsp;prefix.
&amp;nbsp;*
&amp;nbsp;*&amp;nbsp;You&amp;nbsp;can&amp;nbsp;have&amp;nbsp;multiple&amp;nbsp;installations&amp;nbsp;in&amp;nbsp;one&amp;nbsp;database&amp;nbsp;if&amp;nbsp;you&amp;nbsp;give&amp;nbsp;each
&amp;nbsp;*&amp;nbsp;a&amp;nbsp;unique&amp;nbsp;prefix.&amp;nbsp;Only&amp;nbsp;numbers,&amp;nbsp;letters,&amp;nbsp;and&amp;nbsp;underscores&amp;nbsp;please!
&amp;nbsp;*
&amp;nbsp;*&amp;nbsp;At&amp;nbsp;the&amp;nbsp;installation&amp;nbsp;time,&amp;nbsp;database&amp;nbsp;tables&amp;nbsp;are&amp;nbsp;created&amp;nbsp;with&amp;nbsp;the&amp;nbsp;specified&amp;nbsp;prefix.
&amp;nbsp;*&amp;nbsp;Changing&amp;nbsp;this&amp;nbsp;value&amp;nbsp;after&amp;nbsp;WordPress&amp;nbsp;is&amp;nbsp;installed&amp;nbsp;will&amp;nbsp;make&amp;nbsp;your&amp;nbsp;site&amp;nbsp;think
&amp;nbsp;*&amp;nbsp;it&amp;nbsp;has&amp;nbsp;not&amp;nbsp;been&amp;nbsp;installed.
&amp;nbsp;*
&amp;nbsp;*&amp;nbsp;@link&amp;nbsp;https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix
&amp;nbsp;*/
$table_prefix&amp;nbsp;=&amp;nbsp;&amp;#39;wp_&amp;#39;;

/**
&amp;nbsp;*&amp;nbsp;For&amp;nbsp;developers:&amp;nbsp;WordPress&amp;nbsp;debugging&amp;nbsp;mode.
&amp;nbsp;*
&amp;nbsp;*&amp;nbsp;Change&amp;nbsp;this&amp;nbsp;to&amp;nbsp;true&amp;nbsp;to&amp;nbsp;enable&amp;nbsp;the&amp;nbsp;display&amp;nbsp;of&amp;nbsp;notices&amp;nbsp;during&amp;nbsp;development.
&amp;nbsp;*&amp;nbsp;It&amp;nbsp;is&amp;nbsp;strongly&amp;nbsp;recommended&amp;nbsp;that&amp;nbsp;plugin&amp;nbsp;and&amp;nbsp;theme&amp;nbsp;developers&amp;nbsp;use&amp;nbsp;WP_DEBUG
&amp;nbsp;*&amp;nbsp;in&amp;nbsp;their&amp;nbsp;environments.
&amp;nbsp;*
&amp;nbsp;*&amp;nbsp;For&amp;nbsp;information&amp;nbsp;on&amp;nbsp;other&amp;nbsp;constants&amp;nbsp;that&amp;nbsp;can&amp;nbsp;be&amp;nbsp;used&amp;nbsp;for&amp;nbsp;debugging,
&amp;nbsp;*&amp;nbsp;visit&amp;nbsp;the&amp;nbsp;documentation.
&amp;nbsp;*
&amp;nbsp;*&amp;nbsp;@link&amp;nbsp;https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
&amp;nbsp;*/
define(&amp;nbsp;&amp;#39;WP_DEBUG&amp;#39;,&amp;nbsp;false&amp;nbsp;);

/*&amp;nbsp;👇&amp;nbsp;正确位置：添加SCDN&amp;nbsp;HTTPS适配代码（唯一不报错的位置）&amp;nbsp;*/
if&amp;nbsp;(isset($_SERVER[&amp;#39;HTTP_X_FORWARDED_PROTO&amp;#39;])&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;$_SERVER[&amp;#39;HTTP_X_FORWARDED_PROTO&amp;#39;]&amp;nbsp;===&amp;nbsp;&amp;#39;https&amp;#39;)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$_SERVER[&amp;#39;HTTPS&amp;#39;]&amp;nbsp;=&amp;nbsp;&amp;#39;on&amp;#39;;
}

/*&amp;nbsp;That&amp;#39;s&amp;nbsp;all,&amp;nbsp;stop&amp;nbsp;editing!&amp;nbsp;Happy&amp;nbsp;publishing.&amp;nbsp;*/

/**&amp;nbsp;Absolute&amp;nbsp;path&amp;nbsp;to&amp;nbsp;the&amp;nbsp;WordPress&amp;nbsp;directory.&amp;nbsp;*/
if&amp;nbsp;(&amp;nbsp;!&amp;nbsp;defined(&amp;nbsp;&amp;#39;ABSPATH&amp;#39;&amp;nbsp;)&amp;nbsp;)&amp;nbsp;{
	define(&amp;nbsp;&amp;#39;ABSPATH&amp;#39;,&amp;nbsp;__DIR__&amp;nbsp;.&amp;nbsp;&amp;#39;/&amp;#39;&amp;nbsp;);
}

/**&amp;nbsp;Sets&amp;nbsp;up&amp;nbsp;WordPress&amp;nbsp;vars&amp;nbsp;and&amp;nbsp;included&amp;nbsp;files.&amp;nbsp;*/
require_once&amp;nbsp;ABSPATH&amp;nbsp;.&amp;nbsp;&amp;#39;wp-settings.php&amp;#39;;&lt;/pre&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;二、后台修改站点URL（必做操作）&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;代码修改完成后，即可正常登录WordPress后台，按照以下步骤修改站点地址：&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;1. 点击后台菜单 &lt;code&gt;设置 → 常规&lt;/code&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;2. 将以下两个地址修改为 &lt;strong&gt;HTTPS 开头&lt;/strong&gt; 的域名：&lt;/p&gt;&lt;ul style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 20px; padding:0;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;WordPress 地址 (URL)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;站点地址 (URL)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;修改完成后点击「保存更改」，重启宝塔站点或服务器，让配置生效。&lt;/p&gt;&lt;p style=&quot;text-align: center; margin: 20px 0;&quot;&gt;&lt;img src=&quot;http://www.94ts.com/zb_users/upload/2026/06/202606021780390763798237.png&quot; alt=&quot;WordPress修改HTTPS地址&quot; style=&quot;max-width: 100%; height: auto;&quot;/&gt;&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;三、效果验证与问题排查&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;使用HTTPS访问你的域名，查看浏览器地址栏状态：&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;✅ 显示&lt;strong&gt;小锁图标&lt;/strong&gt;：HTTPS配置成功，网站样式、后台登录、CDN访问全部正常；&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px;&quot;&gt;⚠️ 显示&lt;strong&gt;圆圈叹号&lt;/strong&gt;：网站内存在HTTP协议的图片/外部链接，将其替换为HTTPS即可修复。&lt;/p&gt;&lt;p style=&quot;text-align: center; margin: 20px 0;&quot;&gt;&lt;img src=&quot;http://www.94ts.com/zb_users/upload/2026/06/202606021780392116102826.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;按照以上步骤操作后，WordPress配置HTTPS后无法登录后台、页面样式丢失、CDN 504超时等问题全部解决。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: rgb(51, 51, 51); margin: 0px 0px 12px;&quot;&gt;参考示例：&lt;a href=&quot;https://www.tzshdx.cn/&quot; target=&quot;_blank&quot; style=&quot;color:#1976D2&quot;&gt;https://www.tzshdx.cn/&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 02 Jun 2026 16:44:50 +0800</pubDate></item><item><title>关于探索博客｜站点简介与建站说明</title><link>http://www.94ts.com/?id=10</link><description>&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;欢迎来到&lt;strong style=&quot;color:#1976D2&quot;&gt;探索博客（blog.tskjwl.com）&lt;/strong&gt;，本站为个人非营利技术分享博客，专注互联网运维、服务器搭建、网站开发相关知识记录，下文为本站完整介绍。&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;一、本站建站初衷&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;本站由个人站长搭建，用于日常技术笔记存档，同时分享实操踩坑经验，方便同行查阅学习。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;所有内容均来自实操测试，摒弃空洞理论，以落地可用的教程为主，助力新手快速上手运维与建站。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;二、文章内容板块&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1、教程笔记：各类软件、服务器、宝塔、Linux环境搭建图文教程，收录在【教程笔记】栏目。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;2、运维笔记：服务器故障排查、网络配置、主机运维实操记录，收录在【运维笔记】栏目。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;3、平台公告：站点改版、域名迁移、规则更新、免责与隐私相关公示文档。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;三、内容版权与转载规则&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;本站无特殊标注内容均为原创，非商用可正常转载，转载必须附带原文超链接标注出处；禁止私自商用倒卖文章。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;少量转载内容会标注来源，版权归原作者所有，侵权可联系站长下架处理。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;四、访客留言与交流&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;文章评论区开放留言，技术问题、疑问纠错均可留言，站长闲暇时逐一回复；禁止广告、恶意灌水、违规言论。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;五、联系站长&lt;/h2&gt;&lt;div style=&quot;background: #f8fafc; padding: 15px 20px; border-radius: 8px; margin: 15px 8px;&quot;&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#333;&quot;&gt;📩 联系邮箱：&lt;a href=&quot;http://www.94ts.com/&quot; style=&quot;font-size: 15px; white-space: normal; background-color: rgb(248, 250, 252); color: rgb(25, 118, 210); text-decoration: none;&quot;&gt;mail@94ts.com&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#333;&quot;&gt;🌐 本站域名：&lt;a href=&quot;https://blog.tskjwl.com&quot; style=&quot;color: #1976D2; text-decoration: none;&quot;&gt;www.tskjwl.com&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 35px 0 20px 0;&quot;/&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; font-weight: 500; color: #333; margin:0;&quot;&gt;探索博客&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; color: rgb(102, 102, 102); margin: 0px;&quot;&gt;2026年编写&lt;/p&gt;</description><pubDate>Mon, 01 Jun 2026 23:22:36 +0800</pubDate></item><item><title>探索博客隐私保护说明｜用户个人信息收集与使用规则</title><link>http://www.94ts.com/?id=8</link><description>&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;为保护广大访客个人隐私权益，规范本站用户信息收集与使用行为，依据网络相关法律法规，&lt;strong style=&quot;color:#1976D2&quot;&gt;探索博客（www.tskjwl.com）&lt;/strong&gt;制定本隐私保护说明。访问、留言、浏览本站即代表您认可本隐私条款全部内容。&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;一、信息收集范围&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1. 访客主动提交信息：用户在文章评论区留言时自愿填写的昵称、邮箱（邮箱仅用于留言回复核验，非强制填写）。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;2. 系统自动获取信息：网站服务器自动记录访客IP地址、设备型号、浏览器类型、访问时间、访问页面等基础访问日志，仅用于站点安全防护、异常访问排查。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;3. 本站&lt;strong&gt;不会主动收集手机号、身份证、住址等敏感私密信息&lt;/strong&gt;，不会强制索要个人隐私数据。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;二、信息使用规则&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1. 用户留言信息仅用于前台展示留言、作者回复互动，不用于商业推销、短信骚扰。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;2. 访问日志仅用于网站运维、防爬虫、防恶意攻击，不会对外打包出售、泄露用户浏览数据。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;3. 未经用户本人许可，绝不把个人信息出租、转让给任何第三方企业或个人。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;三、Cookie使用说明&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1. 本站使用Cookie优化浏览体验，用于记住访客浏览偏好、避免重复弹窗；&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;2. 用户可自行在浏览器设置中关闭Cookie，关闭后不影响网站基础浏览，仅部分个性化功能失效。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;四、信息安全保护&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1. 本站采用服务器安全防护措施储存现有用户数据，定期维护加固站点，防范数据泄露、篡改、被盗。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;2. 因黑客入侵、不可抗力等非站长可控因素造成的数据泄露，本站将尽力配合溯源处理，不承担不可抗力带来的责任。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;五、第三方外链与广告隐私&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;本站内容附带的第三方网站跳转链接，跳转后隐私规则由第三方平台自行制定，探索博客不对第三方站点的隐私收集行为负责。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;六、信息删除与咨询方式&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;如您需要删除自己在本站的留言、清除个人留存信息，可发送邮件申请处理。&lt;/p&gt;&lt;div style=&quot;background: #f8fafc; padding: 15px 20px; border-radius: 8px; margin: 15px 8px;&quot;&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#333;&quot;&gt;📩 联系邮箱：&lt;a href=&quot;http://www.94ts.com/&quot; style=&quot;font-size: 15px; white-space: normal; background-color: rgb(248, 250, 252); color: rgb(25, 118, 210); text-decoration: none;&quot;&gt;mail@94ts.com&lt;/a&gt;&lt;a href=&quot;http://www.94ts.com/&quot; style=&quot;font-size: 15px; white-space: normal; background-color: rgb(248, 250, 252); color: rgb(25, 118, 210); text-decoration: none;&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#333;&quot;&gt;🌐 官网域名：&lt;a href=&quot;https://blog.tskjwl.com&quot; style=&quot;color: #1976D2; text-decoration: none;&quot;&gt;www.tskjwl.com&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;七、条款修订说明&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;本站可根据法规更新不定期修订本隐私说明，修改内容直接更新至本页面，不再单独通知用户。&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 35px 0 20px 0;&quot;/&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; font-weight: 500; color: #333; margin:0;&quot;&gt;探索博客 ·&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; color: rgb(102, 102, 102); margin: 0px;&quot;&gt;2026年修订&lt;/p&gt;</description><pubDate>Mon, 01 Jun 2026 23:10:15 +0800</pubDate></item><item><title>探索博客 免责声明 | 本站使用条款</title><link>http://www.94ts.com/?id=5</link><description>&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;欢迎访问并使用 &lt;strong style=&quot;color:#1976D2&quot;&gt;探索博客（blog.tskjwl.com）&lt;/strong&gt;，为明确本站与用户之间的权利及义务，保护双方合法权益，特制定本免责声明。凡访问、浏览、使用本站内容及服务的用户，均视为已仔细阅读、充分理解并完全同意本声明全部条款。&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;一、内容适用性声明&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1、本站为个人技术博客，所有内容（包括文字、教程、代码、图片、笔记等）仅用于&lt;strong style=&quot;color:#d32f2f&quot;&gt;学习、交流、技术分享&lt;/strong&gt;，不构成任何专业操作建议、商业指导或法律意见。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;2、本站内容力求准确、完整、及时，但不保证内容绝对无错漏，所有信息仅供参考，用户需根据自身实际情况独立判断与使用。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;二、技术操作风险责任&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1、本站发布的服务器运维、网站搭建、代码修改、系统配置等技术教程，均为个人实操记录，任何技术操作均存在一定风险。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;2、用户因直接/间接使用本站教程、代码、方案导致的&lt;strong style=&quot;color:#d32f2f&quot;&gt;服务器故障、数据丢失、系统崩溃、经济损失&lt;/strong&gt;等后果，本站不承担任何法律责任。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;3、技术操作请务必做好数据备份，谨慎执行，操作风险由用户自行承担。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;三、原创与转载说明&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1、本站原创内容版权归探索所有，欢迎非商业用途学习分享，转载必须注明原文链接及出处。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;2、部分内容来源于网络，仅用于交流学习，版权归原作者所有；如涉及版权侵权，请联系站长核实处理。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;3、禁止任何个人、机构未经授权将本站内容用于商业盈利、恶意搬运、侵权分发。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;四、外部链接免责&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1、本站可能包含指向第三方网站的链接，此类链接仅为方便用户提供，本站无法控制第三方网站内容。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;2、用户访问第三方网站产生的任何风险、损失，本站不承担任何责任。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;五、隐私与信息保护&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1、本站不会主动收集、泄露、出售用户个人隐私信息。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;2、用户在评论、留言等行为中主动公开的信息，自行承担相关风险与责任。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;六、侵权与投诉处理&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;如发现本站内容侵犯您的版权、商标权、肖像权或其他合法权益，请通过官方邮箱联系我们，并提供相关证明材料，本站将在核实后第一时间处理。&lt;/p&gt;&lt;div style=&quot;background: #f8fafc; padding: 15px 20px; border-radius: 8px; margin: 15px 8px;&quot;&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#333;&quot;&gt;📩 侵权投诉邮箱：&lt;a href=&quot;mailto:mail@94ts.com&quot; target=&quot;_self&quot; textvalue=&quot;mail@94ts.com&quot;&gt;mail@94ts.com&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#333;&quot;&gt;🌐 官方域名：www.tzshdx.cn&lt;/p&gt;&lt;/div&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;七、声明修改与最终解释权&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1、本站有权随时修改、更新本免责声明条款，修改后将发布在本页面，无需逐一通知用户。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;2、探索博客保留对本站所有内容、服务及声明条款的最终解释权。&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 35px 0 20px 0;&quot;/&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; font-weight: 500; color: #333; margin:0;&quot;&gt;探索博客 ·&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; color: rgb(102, 102, 102); margin: 0px;&quot;&gt;2026年 最终修订&lt;/p&gt;</description><pubDate>Mon, 01 Jun 2026 16:15:01 +0800</pubDate></item><item><title>【博客迁移公告】原郁铭阳博客正式全面迁移升级为探索博客</title><link>http://www.94ts.com/?id=3</link><description>&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;各位长期关注、支持本站的技术爱好者、小伙伴们：&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;大家好！为统一品牌体系、规范平台运营、拓宽技术内容覆盖面，经过长期筹备，原【郁铭阳博客】现已正式完成品牌升级、主体更替与域名迁移。即日起，本站正式更名&lt;strong style=&quot;color: #1976D2; font-weight: 600;&quot;&gt;探索博客&lt;/strong&gt;，全站内容、服务、资源统一迁移至全新官方域名，特此公告。&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 25px 0;&quot;/&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;一、全站核心信息变更说明&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;本次为全方位品牌规范化升级，新旧平台信息统一对照如下：&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;&lt;strong&gt;1、博客名称变更&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;原名称：郁铭阳博客&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;现名称：&lt;strong style=&quot;color: #1976D2;&quot;&gt;探索博客&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;&lt;strong&gt;2、官方域名变更&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;旧域名（已永久停用、全站301重定向）：&lt;a href=&quot;https://tzshdx.cn&quot; target=&quot;_blank&quot; style=&quot;color: #555; text-decoration: none; transition: all 0.3s ease;&quot; onmouseover=&quot;this.style.color=&amp;#39;#1976D2&amp;#39;&quot; onmouseout=&quot;this.style.color=&amp;#39;#555&amp;#39;&quot;&gt;tzshdx.cn&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;全新官方域名：&lt;strong&gt;&lt;a href=&quot;https://blog.tskjwl.com&quot; target=&quot;_blank&quot; style=&quot;color: rgb(25, 118, 210); text-decoration: none; transition: 0.3s;&quot; onmouseover=&quot;this.style.color=&amp;#39;#0D47A1&amp;#39;&quot; onmouseout=&quot;this.style.color=&amp;#39;#1976D2&amp;#39;&quot;&gt;www.tskjwl.com&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;&lt;strong&gt;3、运营主体与团队升级&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;原运营团队：TX团队&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;现运营团队：探索技术团队&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;现运营主体：&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;&lt;strong&gt;4、平台定位升级&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;升级前：主打IDC运维、互联网垂直领域技术分享&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;升级后：&lt;strong style=&quot;color: #1976D2;&quot;&gt;专注互联网教程笔记与技术分享&lt;/strong&gt;，覆盖建站运维、网络技术、实战教程、学习笔记等多元化内容，持续输出优质原创干货，满足广大技术爱好者学习与交流需求。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;二、数据迁移与访问保障&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;本次品牌与域名迁移为&lt;strong style=&quot;color: #2E7D32;&quot;&gt;无缝无感迁移、数据100%保留&lt;/strong&gt;，全方位保障用户访问体验与网站权重：&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;1、&lt;strong&gt;完整数据迁移&lt;/strong&gt;：原郁铭阳博客所有历史文章、教程笔记、站点数据全部完整迁移，无丢失、无删减、无改版缩水；&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 8px 0;&quot;&gt;2、&lt;strong&gt;权重完整继承&lt;/strong&gt;：旧域名部署永久301重定向，所有旧收藏、旧收录链接自动跳转新站，完整继承流量与搜索引擎权重；&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;3、&lt;strong&gt;服务持续运营&lt;/strong&gt;：技术更新、干货分享、用户交流服务正常稳定运行，无任何中断。&lt;/p&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;三、官方资质信息公示&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;为方便用户核验真伪、收藏官网、商务咨询，现将本站官方信息与备案资质统一公示：&lt;/p&gt;&lt;div style=&quot;background: #f8fafc; padding: 15px 20px; border-radius: 8px; margin: 15px 8px;&quot;&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#333;&quot;&gt;官方站名：探索博客&lt;/p&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#333;&quot;&gt;官方域名：&lt;a href=&quot;https://blog.tskjwl.com&quot; target=&quot;_blank&quot; style=&quot;color: rgb(25, 118, 210); text-decoration: none;&quot; onmouseover=&quot;this.style.color=&amp;#39;#0D47A1&amp;#39;&quot; onmouseout=&quot;this.style.color=&amp;#39;#1976D2&amp;#39;&quot;&gt;https://www.tskjwl.com&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#333;&quot;&gt;运营主体：探索&lt;/p&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#333;&quot;&gt;联系邮箱：&lt;a href=&quot;mailto:mail@94ts.com&quot; target=&quot;_self&quot; textvalue=&quot;mail@94ts.com&quot;&gt;mail@94ts.com&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#666;&quot;&gt;ICP备案号：豫ICP备2024074089号&lt;/p&gt;&lt;p style=&quot;margin:8px 0; font-size:15px; color:#666;&quot;&gt;公安备案号：豫公网安备41110302060463号&lt;/p&gt;&lt;/div&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;四、用户重要温馨提示&lt;/h2&gt;&lt;div style=&quot;background: #fff2f2; padding: 15px 20px; border-radius: 8px; margin: 15px 8px;&quot;&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #b71c1c; margin:0;&quot;&gt;&lt;strong&gt;⚠️ 重要提醒：&lt;/strong&gt;请各位新老用户尽快收藏全新官方域名 &lt;strong&gt;&lt;a href=&quot;https://blog.tskjwl.com&quot; target=&quot;_blank&quot; style=&quot;color:#b71c1c;text-decoration:underline;&quot;&gt;www.tskjwl.com&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin:10px 0 0 0;&quot;&gt;1、后续所有技术教程、学习笔记、文章更新、平台公告仅在新官网发布；&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin:10px 0 0 0;&quot;&gt;2、网络上所有非本官方域名的「郁铭阳博客、TS博客」均与本站无关，谨防虚假钓鱼站点；&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin:10px 0 0 0;&quot;&gt;3、本站未来将持续更新互联网实战教程、技术笔记、建站运维干货内容，打造优质技术学习平台。&lt;/p&gt;&lt;/div&gt;&lt;h2 style=&quot;font-size: 16px; color: #1976D2; border-left: 4px solid #1976D2; padding: 6px 12px; margin: 30px 0 15px 0; background: #f8fafc;&quot;&gt;五、致谢说明&lt;/h2&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;自郁铭阳博客运营以来，衷心感谢每一位读者与技术爱好者的长期陪伴和支持！本次品牌升级是站点规范化、专业化发展的重要升级。未来探索博客将坚守初心，深耕互联网技术干货，持续稳定输出优质原创内容，不负每一位用户的关注与信任。&lt;/p&gt;&lt;p style=&quot;line-height: 1.8; font-size: 15px; color: #333; margin: 0 0 12px 0;&quot;&gt;我们将持续优化站点体验、丰富内容体系，与各位技术爱好者一同交流成长！&lt;/p&gt;&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 35px 0 20px 0;&quot;/&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; font-weight: 500; color: #333; margin:0;&quot;&gt;探索博客 ·&amp;nbsp; 运营团队&lt;/p&gt;&lt;p style=&quot;text-align: right; line-height: 1.8; color: rgb(102, 102, 102); margin: 0px;&quot;&gt;2026年&lt;/p&gt;</description><pubDate>Mon, 01 Jun 2026 01:31:38 +0800</pubDate></item></channel></rss>