当你的lnmp架构安装完成后,发现html页面可以打开,但php页面却无法打开,页面提示404 not found,如果确定配置过程不会有问题,可以从下面两个方法来查看
1.nginx的server里面有添加对php的支持没有,如
location / {
root html;
index index.php index.html index.htm ;
}
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
确定上面两处有添加index.php
2.php-fpm的服务是否启动
有时经常会因为这个忘记而无法解析php
lnmp安装完成后无法解析php页面,布布扣,bubuko.com
时间: 2024-11-03 22:44:25