1:安装时无法连接数据库
手动创建typecho数据库即可

2:登录帐号后提示404
到nginx的配置文件夹找到enable-php.conf
修改为如下

location ~ [^/]\.php(/|$)
{
    #try_files $uri =404;
    fastcgi_pass  unix:/tmp/php-cgi.sock;
    fastcgi_index index.php;
    include fastcgi.conf;
    include pathinfo.conf;
}

参考文章:https://qq52o.me/2230.html

标签: none

添加新评论