php7.0 + nginx 出现 404 页面错误

php7.0 + nginx makes 404 page error

在 AWS EC2 实例中,我使用 php7.0 和 nginx 创建网络环境。 这会导致 404 页面错误。

HTML 扩展页面运行良好,但在 php 上运行不佳。

在default.conf

server {
listen       80;
server_name  localhost;

#charset koi8-r;
#access_log  /var/log/nginx/log/host.access.log  main;

location / {
    root   /var/www;
    index index.php index.html index.htm;
}

#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   /var/error;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
#    proxy_pass   http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
    root    /var/www;
    fastcgi_intercept_errors on;
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    include        fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
#    deny  all;
#}

}

在fastcgi_params

fastcgi_param  QUERY_STRING       $query_string;
fastcgi_param  REQUEST_METHOD     $request_method;
fastcgi_param  CONTENT_TYPE       $content_type;
fastcgi_param  CONTENT_LENGTH     $content_length;

fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
fastcgi_param  REQUEST_URI        $request_uri;
fastcgi_param  DOCUMENT_URI       $document_uri;
fastcgi_param  DOCUMENT_ROOT      $document_root;
fastcgi_param  SERVER_PROTOCOL    $server_protocol;
fastcgi_param  REQUEST_SCHEME     $scheme;
fastcgi_param  HTTPS              $https if_not_empty;

fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;

fastcgi_param  REMOTE_ADDR        $remote_addr;
fastcgi_param  REMOTE_PORT        $remote_port;
fastcgi_param  SERVER_ADDR        $server_addr;
fastcgi_param  SERVER_PORT        $server_port;
fastcgi_param  SERVER_NAME        $server_name;

# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param  REDIRECT_STATUS    200;

并在 nginx.conf

    user  www-data;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;
}

整个环境是 Nginx + php7.0 + AWS EC2 实例上的 mariaDB。

我找不到问题所在...

我会 post 这个作为答案,但我不熟悉 php7 和 AWS EC2。

您的 nginx 配置似乎不一致。

这个区块:

location / {
    root   /var/www;
    index index.php index.html index.htm;
}

告诉 nginx 您的文件位于 /var/www 下面,例如:

  • 可以在 /var/www/index.html
  • 找到 URI /index.html
  • 可以在 /var/www/foo/bar.html
  • 找到 URI /foo/bar.html

index 指令告诉 nginx 查找 index.php(等),也在 /var/www 下方。但是,任何以 .php 结尾的 URI 都由不同的位置块处理。

块:

location ~ \.php$ {
    root    /var/www;
    fastcgi_intercept_errors on;
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    include        fastcgi_params;
}

用于处理 .php URI。现在,除非您的架构是特殊的,否则 SCRIPT_FILENAME 参数会将文件的位置从 nginx 传递到 php 子系统。在大多数系统上,使用 $document_root$fastcgi_script_name 的值,这意味着:

  • 可以在 /var/www/index.php
  • 找到 URI /index.php
  • 可以在 /var/www/foo/bar.php
  • 找到 URI /foo/bar.php

假设 root 设置为 /var/www


在您的配置文件中,您在 location ~ \.php$ 中设置了 root 但没有使用它 root 指令设置 $document_root.

的值

还有其他问题,但重要的是(除非您使用特殊架构)SCRIPT_FILENAME 的值应该是:

fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

您应该将 include fastcgi_params; 放在 任何 fastcgi_param 指令之前,以避免包含的文件默默地覆盖所需的值。