这是服务器块中配置的一部分:
我无法执行任何 php 脚本,我test.php
在 /var/html 下放置了一个名为的文件,但是当我指向时http://localhost/test.php
,我得到了一个结果:
File not found.
,
这不是 nginx 生成的,因为它与 nginx 的 404 页面不同。
location / {
root /var/html;
index index.html index.htm;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_intercept_errors on;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi.conf;
}
我错过了什么吗?
您正在该
/
位置下定义文档根目录,但这不适用于该\.php$
位置。将root
指令移到该/
位置之外,以便将其应用于两者。