nginx php空白页 fastcgi_param
上网搜索了半天终于解决了,在这做个记录备忘
网上的一种说法是缺少这么一句话在nginx的配置文件里
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
这句话是干嘛的呢 其实他就是定义php中用到的服务器变量 也就是$_SERVER
http://wiki.nginx.org/NginxHttpFcgiModule 这个网址下有这么一句话
This module allows Nginx to interact with FastCGI processes and control what parameters are passed to the process。
其实也就是服务器像你的处理php的cgi传递过去他需要的一些参数,而至少要有下面的两个参数php才能执行起来
Below is an example of the minimally necessary parameters for PHP:
fastcgi_param SCRIPT_FILENAME /home/www/scripts/php$fastcgi_script_name;
fastcgi_param QUERY_STRING $query_string;
Parameter SCRIPT_FILENAME is used by PHP for determining the name of script to execute, and QUERY_STRING contains the parameters of the request.
所以 我们在没有定义SCRIPT_FILENAME这个系统变量的时候 php是没法解释执行的
这个变量的定义可以写在nginx的配置文件nginx.conf里 也可以写在外部 用include的方式在nginx.conf里包含进来。
上一篇: 求高人检测下网站安全有关问题
下一篇: 关于input函数使用方法的实例汇总
推荐阅读
-
在Mac OS上编译安装Nginx+PHP+MariaDB开发环境的教程
-
ubuntu+nginx+php环境搭建方法分享
-
深入Nginx + PHP 缓存详解
-
php调用nginx的mod_zip模块打包ZIP文件
-
PHP、Nginx、Apache中禁止网页被iframe引用的方法
-
nginx connect() to unix:/var/run/php-fpm.sock failed (11: Resource temporarily unavailable)
-
nginx比apache处理静态文件速度快,但是nginx处理大量并发的php请求时,容易出现502错误,频率大概是多少
-
PHP连接Nginx服务器并解析Nginx日志的方法
-
nginx php-fpm中启用慢日志配置(用于检测执行较慢的PHP脚本)
-
nginx php-fpm环境中chroot功能的配置使用方法