发布网友 发布时间:2022-04-23 13:36
共1个回答
热心网友 时间:2023-10-16 00:32
fastcgi没装好,或者nginx配置里没有加上追问php我是用的PORTS安装的,fastcgi需要单独安装吗?不过系统启动信息里提示PHP-FPM正常启动,NGINX里也配置了
location ~ .*\.(php|php5)?$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
追答nginx的server配了么?