>  기사  >  백엔드 개발  >  网站Nginx配置时无法解析php文件

网站Nginx配置时无法解析php文件

WBOY
WBOY원래의
2016-06-23 13:39:431121검색

我在安装阿里云对应的VPSMate面板时打开网站首页会直接下载文件,一想就是没有解析php,不过我不会这个,找同事解决了,记录下~

ps:csdn终于支持markdown了不容易啊……

如何解决:

  • 打开/etc/nginx/nginx.conf.default,复制如下代码
  • # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000   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;  }
  • 放到/etc/nginx/conf.d/_.conf,文件中,保存后如下代码所示
  • server { # Generated by VPSMate    listen 80;    server_name _ www.paoyx.com;    index index.html index.htm index.php;    location / {        root    /var/www;    }    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000     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 = /404.html {        alias   /usr/share/nginx/html;    }    location = /50x.html {        alias   /usr/share/nginx/html;    }}
    성명:
    본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.