linux nginx不解析php的解决办法:1、查询9000端口是否出于侦听状态;2、查看“php-fpm.conf”文件;3、修改nginx配置为“location ~ \.php$ {fastcgi_pass unix:/dev/shm/php-cgi.sock; #127.0.0.1:9000 fastcgi_index index...”即可。
安装的nginx默认侦听的是9000端口
查询9000端口是否出于侦听状态
netstat -antp | grep :9000

立即学习“PHP免费学习笔记(深入)”;
查询之后发现没有查到,查看php-fpm.conf文件
cat /usr/local/php/etc/php-fpm.conf

修改nginx配置
location ~ \.php$ {
fastcgi_pass unix:/dev/shm/php-cgi.sock; #127.0.0.1:9000
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}Linux的版本有:Deepin、UbuntuKylin、Manjaro、LinuxMint、Ubuntu等版本。其中Deepin是国内发展最好的Linux发行版之一;UbuntuKylin是基于Ubuntu的衍生发行版;Manjaro是基于Arch的Linux发行版;LinuxMint默认的Cinnamon桌面类似Windows XP简单易用;Ubuntu则是以桌面应用为主的Linux操作系统。
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号