我在主机子位置的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$
为什么不能正确处理此请求?
谢谢。
答案 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