如何在 Nginx 中从 Web 根文件夹之外的文件夹提供 PHP 文件

如何在 Nginx 中从 Web 根文件夹之外的文件夹提供 PHP 文件

当我访问 url 时,www.example.gr我想要加载一个表单,然后能够将其提交到其中www.example.gr/php/mail.php

我的文件和文件夹结构如下

root folder ( /var/www/html/app/ ) with these files:

index.php
test.php
and a second folder (/var/www/html/assets/ ) with these files:

php/phpmailer/...
php/mail.php
vendor/...
js/...
images/...
css/...

我的 nginx 配置是


    server {
      server_name example.gr www.example.gr;

      root /var/www/html/app/;
      index index.php index.html index.htm;

      location ^~ /php {
        root /var/www/html/assets/php;
        index mail.php mail.html;
        try_files $uri $uri/ /php/mail.php?q=$uri&$args;

          
        location ~* \.php(/|$) {
          fastcgi_pass unix:/run/php-fpm/www.sock;
          fastcgi_index mail.php;
          include /etc/nginx/fastcgi_params;
          fastcgi_param SCRIPT_FILENAME /var/www/html/assets/php$fastcgi_script_name;
          fastcgi_intercept_errors on;
        }
      }

      # location /php/ {
      #   alias /var/www/html/assets/php/;
      # }
      location /js/ {
        alias /var/www/html/assets/js/;
      }
      location /vendor/ {
        alias /var/www/html/assets/vendor/;
      }
      location /images/ {
        alias /var/www/html/assets/images/;
      }

      location / {
        #try_files $uri $uri/ =404;
        try_files $uri $uri/ /index.php?q=$uri&$args;
      }

      location ~ \.php$ {
        try_files $uri =404;
        fastcgi_pass unix:/run/php-fpm/www.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
      }
   }

该页面www.example.gr成功加载所有图像、js、css 文件,但提交不起作用,当我进入时www.example.gr/php/mail.php出现 404 错误。

我怎样才能让它工作?

答案1

root您对块的和SCRIPT_FILENAME块下的值location ^~ /php不正确。

当前正在处理的 URI 包含前缀/php/,并与值组合root形成路径名(如前所述这里)。因此,您不应phproot值中包含该值,否则您的路径名将包含.../php/php/...无法正常工作的内容。

尝试:

location ^~ /php {
    root /var/www/html/assets;
    ...
    location ~* \.php(/|$) {
        ...
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
}

的值与当前范围内的语句$document_root的值相同。root

相关内容