标签 typecho 下的文章
icefox主题的部分设置:站点顶部背景图https://puo.puo.cn/usr/uploads/2025/09/1925714163.png站点顶部用户头像:https://puo.puo.cn/usr/uploads/2025/09/2834117019.png顶部用户头像旁名称:碎碎念顶部头像旁名称跳转地址:https://puo.puo.cn友情链接:https://puo.puo.cn/img-cun/shuoshuo2.png|| 说说快写 || https://puo.puo.cn/index.php/xie.html https://puo.puo.cn/img-cun/writer1.png|| 随记一篇 ||https://puo.puo.cn/admin/write-post.phphttps://puo.puo.cn/img-cun/puo.cn-logo.png||Puo's引导页|| http://index.puo.cn前端发布页地:https://puo.puo.cn/index.php/xie.html
icefox主题的部分设置

icefox主题的部分设置

安装typecho仿微信主题reborn碰到的留言板乱码问题主题地址:https://shawnzeng.com/archives/30/comment-page-1#comments我两次安装都碰到了同样的问题无目录问题.jpg目录确实不存在 —— 之前说“wechat xiaodianshi 目录是存在的”,但父目录 emoji 本身就不存在,所以 PHP 报错是准确的。✅ 解决方案:手动创建缺失目录SSH 登录服务器,执行:bash复制mkdir -p /www/wwwroot/typecho.zuizhuai.cn/usr/themes/reborn/assets/emoji/wechatmkdir -p /www/wwwroot/typecho.zuizhuai.cn/usr/themes/reborn/assets/emoji/xiaodianshi然后确保 PHP 有权限访问:bash复制假设 PHP 用户是 www(你可以用 whoami.php 确认)chown -R www:www /www/wwwroot/typecho.zuizhuai.cn/usr/th...
安装typecho仿微信主题reborn碰到的留言板乱码问题

安装typecho仿微信主题reborn碰到的留言板乱码问题

typecho更新了永久地址的格式,然后再访问之前的地址就变成404了,我用的宝塔面板宝塔 / 面板用户 「网站 → 伪静态」里把上面 Nginx 或 Apache 那段粘进去保存即可,不用手动 SSH。# 旧数字格式跳转到新别名格式location ~ ^/archives/(\d+)/?$ {# 先尝试内部跳转到新地址(返回 301,SEO 无损失) return 301 /archives/$request_uri; # 如果你只想“兼容”而不跳转,把上一行改成: # rewrite ^/archives/(\d+)/?$ /index.php?$1 last;}Typecho 官方伪静态规则(保持不变)location / {index index.html index.php; if (!-e $request_filename) { rewrite ^(.*)$ /index.php$1 last; }}
typecho更新地址链接,404了

typecho更新地址链接,404了