码迷,mamicode.com
首页 > 其他好文 > 详细

centos搭建 nginx一直报错 file not found.

时间:2016-11-21 19:35:11      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:问题   rip   安装   重启   127.0.0.1   根目录   include   ati   注释   

百度了半天找到别人的解决办法 记录下

摘要: file not found. nginx php 这个问题是你配置文件的问题: 查看就是了不要管 nginx 如何开启解析 PHP 的功能? # 成功安装后,创建 php-fpm.conf 配置文件,删除 nginx.conf 中“pass the PHP scripts to FastCGI

file not found. nginx php

这个问题是你配置文件的问题:

 


查看就是了不要管
nginx 如何开启解析 PHP 的功能?
# 成功安装后,创建 php-fpm.conf 配置文件,删除 nginx.conf 中“pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000”部分的注释


cd /usr/local/php/etc

mv php-fpm.conf.default php-fpm.conf

vi /usr/local/nginx/conf/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;


}

解决办法:

 

 
 
 

 fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;

这一句有问题,请再仔细查想一下为什么?



 

  • 华晨@kut : 发现了更好的办法,/scripts 改成 $document_root 就好了,呵呵。 (
  • 华晨@kut : 哦,我知道了,把 /scripts 改成 /usr/local/nginx/html 就可以了。我刚才在服务器上试了一下,真的可以找到文件并且成功解析了!十分感谢! (4年前)  
  • kut@华晨: /scripts是一个目录名,也就是你站点的根目录,比如说,你访问/index.php这个文件,其实就是访问操作系统中/scripts/index.php这个文件,这个文件是否存在?(4年前)  
  •  
重启nginx就可以解析php了。


# 启动 php-fpm 和 nginx
/usr/local/php/sbin/php-fpm
/usr/local/nginx/sbin/nginx

# 在 nginx 的 html 目录下放一个 php 文件,浏览器访问,不能解析,显示“ File not found.”

 

 

centos搭建 nginx一直报错 file not found.

标签:问题   rip   安装   重启   127.0.0.1   根目录   include   ati   注释   

原文地址:http://www.cnblogs.com/php-linux/p/6086404.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!