#### 解决方法:
在nginx配置文件中找到定义调用脚本文件的地方,例如:
`fastcgi_param script_filename /scripts$fastcgi_script_name;`
修改成($document_root):
`fastcgi_param script_filename $document_root$fastcgi_script_name;`
提示:
`$document_roo`t 代表当前请求在`root`指令中指定的值。如:
代码示例:
```
location / {
root /usr/local/nginx/html;
index index.php index.html index.htm;
fastcgi_param script_filename $document_root$fastcgi_script_name;
}
```
上面配置中的$document_root就是针对/usr/local/nginx/html目录下的php文件进行解析。