Ngigx + PHP-FPM 设置并在根目录中工作,但我无法让虚拟目录工作。
我希望 //localhost/pb/test.php 执行 c:\opt\php\public\test.php 但它因“未指定输入文件”而中断。事实上,甚至 .html 文件都不起作用,但一旦工作,我希望 php 指令也能在 /pb 下工作。
当前的 nginx.conf:
server {
listen 80;
server_name localhost;
location / {
root html;
index index.html index.htm index.php;
}
location /pb/ {
root /opt/php/public;
index index.html index.htm index.php;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9123;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}