nginx-子目录的php返回404

时间:2019-02-19 16:48:22

标签: php nginx nginx-config

我在主机子位置的php页面上收到404错误。 我的配置是:

server {
    listen 80;
    root /var/www/html/nisite;
    index  index.php index.html index.htm;
    server_name  www2.company.com wp-newsite-stg-02.company.com;

    location / {
    try_files $uri $uri/ /index.php?$args;
    }

    location ~ \.php$ {
    fastcgi_split_path_info  ^(.+\.php)(/.+)$;
    fastcgi_index            index.php;
    fastcgi_pass             unix:/var/run/php/php7.2-fpm.sock;
    include                  fastcgi_params;
    fastcgi_param   PATH_INFO       $fastcgi_path_info;
    fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }

  # =================================

    location /office {
        root /var/www/html/oldsite;
    }

}

当我转到http://www2.company.com/office时,也可以看到该页面,所有静态资产也都被投放,但是当我尝试访问http://www2.company.com/office/php/form-process.php时,出现404错误。

location ~ \.php$为什么不能正确处理此请求?

谢谢。

1 个答案:

答案 0 :(得分:1)

location块从周围的块中的$document_root语句继承root的值。您正在从两个单独的根目录运行PHP脚本,因此需要两个单独的location块来处理它们。

解决方案是使用嵌套的location块。

例如:

location ^~ /office {
    root /var/www/html/oldsite;

    location ~ \.php$ {
        try_files      $uri =404;
        fastcgi_pass   unix:/var/run/php/php7.2-fpm.sock;
        include        fastcgi_params;
        fastcgi_param  SCRIPT_FILENAME  $request_filename;
    }
}

使用^~修饰符以确保正确的location处理.php文件。有关详情,请参见this document。使用try_files语句来避免passing uncontrolled requests to php