phpinfo空白

2012-11-04 10:48:06

主要症状:nginx下phpinfo()空白以及所有php文件空白,但是html页面可正常访问
vim打开/etc/nginx/conf.d下default.conf sudo vim default.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; }
 
改为:
server { listen 80; server_name localhost;
#charset koi8-r; #access_log /var/log/nginx/log/host.access.log main;
location / { root /usr/share/nginx/html; index index.html index.htm index.php; }
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~ \.php$ { root /usr/share/nginx/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name; include fastcgi_params; }
观察发现其实将每个location 后的root以及fastcgi_param SCRIPT_FILENAME后面的目录更改成同一位置即可,参考页面
|