无法在 nginx 服务器上执行 PHP 文件。

无法在 nginx 服务器上执行 PHP 文件。

无法在 nginx 服务器上执行 PHP 文件。

下面是我的 default.conf 文件。

#
# The default server
#
server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index index.html index.php index.htm; 
    }

    error_page  404              /404.html;
    location = /404.html {
        root   /usr/share/nginx/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;
    }

    # 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  /usr/share/nginx/html$fastcgi_script_name;
        include        fastcgi_params;
    }
}

答案1

请务必阅读陷阱页面多个索引指令

您不应该将这些索引指令放在如此处建议的位置下,这不是正确的做法(虽然可行,但却是错误的)。

答案2

您还可以使用 try_files 指令:

尝试文件$uri $uri/ /index.php;

并且位置 ~ \.php$ 下的根行看起来很可疑......

http {
   上游 phpfpm {
      #服务器 unix:/var/run/php5-fpm.sock;
      服务器 127.0.0.1:9000;
   }
}

服务器 {
         ...
      索引索引.php;

      地点 / {
         ...
         错误页面 404 = @phpfpm;
         尝试文件$uri $uri/ /index.php;
      }

      位置 ~ \.php$ {
         尝试文件$uri $uri/ /index.php;
         包括 fastcgi_params;
         fastcgi_intercept_errors开启;

         #fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
         #fastcgi_index 索引.php;
         fastcgi_pass phpfpm;
      }

认为这会起作用,但这不是一个秘诀,您需要将自己的配置融入其中。

相关内容