nginx - 子目录的 php 返回 404
nginx - php of subdirectory is returning 404
我在 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$
不能正确处理这个请求?
谢谢。
location
块从周围块中的 root
语句继承 $document_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 for details. Use the try_files
statement to avoid passing uncontrolled requests to php
我在 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$
不能正确处理这个请求?
谢谢。
location
块从周围块中的 root
语句继承 $document_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 for details. Use the try_files
statement to avoid passing uncontrolled requests to php