【发布时间】:2021-02-10 01:04:18
【问题描述】:
文件结构 /var/www/html/info
我在文件夹位置放置了一个 info.php 来回显 php 信息,这是一个 404。
非常感谢任何指导。
# The sub directory used for the wordpress installation
location /info {
# Sets /var/www/html/info as root of /info
#root /var/www/html/info;
#
try_files $uri $uri/ /index.php;
# Try the uri has sent by the browser, then the uri as a folder
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name){
return 404;
}
#Look for the FastCGI Process Manager at this location
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
#Include the nginx fastcgi default params
include fastcgi_params;
}
}
【问题讨论】: