这是我的 nginx conf 位置块:
location /foo {
alias /var/www/foo;
index index.php;
try_files $uri $uri/ /index.php;
location /foo/index.php {
include snippets/fastcgi-php.conf;
fastcgi_param SCRIPT_FILENAME $request_filename;
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
}
}
当我将数据发布到 /foo 时,它并没有出现在 index.php 中(为$_POST
空)。
我试图在这里找到类似的问题,但它们都有重写规则或更复杂的设置。
我怎样才能简单地让 nginx 将所有内容传递到默认索引?
谢谢!