mashirozx / sakura

A Wonderful WordPress Theme: 樱花庄的白猫博客主题
https://2heng.xin/theme-sakura/
GNU General Public License v2.0
3.58k stars 585 forks source link

更新 manifest 跳转 404 #271

Closed AniBullet closed 3 years ago

AniBullet commented 3 years ago

描述问题 重新回复的网站,换了服务器,封面图和 manifest 都是以前的,没有问题,点击更新 manifest 跳转 404 bug 重现步骤 1.准备好图片和manifest等 2.设置中 点击 这里 更新manifest

截图(如有) image

image

系统信息

补充信息 url试了没问题

mashirozx commented 3 years ago

换成PHP7.4试试

AniBullet commented 3 years ago

换成PHP7.4试试

行,之前确实不是高版本,刚好重新恢复就安装了新版php...降版本不知道麻烦不,暂时先不处理了,谢谢

mashirozx commented 3 years ago

PHP可以多个版本共存,Nginx或者Apache上指定一下版本就可以了

AniBullet commented 3 years ago

PHP可以多个版本共存,Nginx或者Apache上指定一下版本就可以了

破案了,因为伪静态没了,重新给 /usr/local/nginx/conf/vhost/xxxxxx.com.conf 加了伪静态代码就可以显示了,虽然比较迷~

location / {
    try_files $uri $uri/ /index.php?$args;
}

# Add trailing slash to */wp-admin requests.
rewrite /wp-admin$ $scheme://$host$uri/ permanent;