nginx 别名使用 php5-fpm 响应 404

nginx 别名使用 php5-fpm 响应 404

我使用 nginx 的 php5 fpm。但我遇到了一个问题。

# debug alias
location /bb/ {
    alias /usr/share/blahblah/;
}

找不到文件http://mysite.localhost/bb/index.php。但它仍然在/usr/share/blahblah/index.php

这是一个错误:

*1 FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream

答案1

您可能不想直接从磁盘加载该文件,而是通过 fastcgi 代理。在这种情况下,重写 URL 可能更适合您。

相关内容