>백엔드 개발 >PHP 튜토리얼 >关于php 执行后 File not found.

关于php 执行后 File not found.

WBOY
WBOY원래의
2016-07-06 13:52:472711검색

我用的是 centos6.0

php 和 php-fpm 是通过yum 安装的, 然后nginx配置为

<code>location ~ \.php$ {
        root           /root/code/wordpress;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
</code>

不知道为什么访问php文件返回 file not found , 不知道是不是 fpm里有什么配置需要启动才能解析Php文件,麻烦大家指点下谢谢

回复内容:

我用的是 centos6.0

php 和 php-fpm 是通过yum 安装的, 然后nginx配置为

<code>location ~ \.php$ {
        root           /root/code/wordpress;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
</code>

不知道为什么访问php文件返回 file not found , 不知道是不是 fpm里有什么配置需要启动才能解析Php文件,麻烦大家指点下谢谢

留意到你的文件放在root的家目录下,是否php-fpm有权限读取?

index.php文件设置读权限

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.