nginx php No input file specified 如何避免
配置nginx支持php 出现了No input file specified ?
只要修改下安装目录下的 nginx.conf下的
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
}
修改成
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html/$fastcgi_script_name; #安装的绝对路径
include fastcgi_params;
}
重启nginx
/usr/local/nginx/sbin/nginx -s reload
成功运行php脚本相关文章
相关视频
上一篇: 怎么同时查询多个数据表
下一篇: php数字刷进字符串有关问题
推荐阅读
-
关于PHP5.6+版本“No input file specified”问题的解决
-
关于PHP5.6+版本“No input file specified”问题的解决
-
nginx+php出现No input file specified解决办法
-
nginx php No input file specified 如何避免
-
Nginx 提示 no input file specified 。
-
Nginx 提示 no input file specified 。
-
swoole - PHP如何设置file_get_contents('php://input')?
-
nginx服务器*问不存在的php页面No input file specified
-
windows 上nginx提示no input file specified,我都按网上的配置了哈?
-
Nginx 提示No input file specified.