问题描述
- lnmp 无法解析php文件
- nginx和php-fpm都可以正常启动9000端口也正常可以访问html文件不能访问php文件
访问php文件的时候直接下载这是我nginx.conf的配置
location / {
43 root html;
44 index index.html index.htm index.php;
45 }
location ~ .php$ {
59 root /usr/html;
60 fastcgi_pass 127.0.0.1:9000;
61 fastcgi_index index.php;
62 fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;63 #include fastcgi.conf;
64 include fastcgi_params;
请哪位大神指点下
解决方案
不知道,问其他人吧!
解决方案二:
46行不是这个,多查查,能查到,是document什么的,我刚用……
时间: 2024-09-30 21:46:48