问题描述:

安装了typecho显示成功安装,但是前端只显示标题和摘要,点击查看不了详细内容。

问题原因:

PHP这块不支持pathinfo,
官网提供的解决方案有一定参考性,但是不能完全复用

http://docs.typecho.org/servers

经过多次测试,将 Nginx 的 PHP 段添加下列第五行内容,就可以访问文章详细信息了

location ~ .*\.php(\/.*)*$ {
        root           html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_split_path_info ^(.+?.php)(/.*)$;
        set $path_info "";
        set $real_script_name $fastcgi_script_name;
        if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
                set $real_script_name $1;
                set $path_info $2;
        }
        fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$real_script_name;
        fastcgi_param SCRIPT_NAME $real_script_name;
        fastcgi_param PATH_INFO $path_info;
        include        fastcgi_params;
    }
最后修改:2021 年 10 月 10 日
如果觉得我的文章对你有用,请随意赞赏