使用 X-Accel-Redirect 的 nginx 重定向循环

使用 X-Accel-Redirect 的 nginx 重定向循环

尝试让 nginx 与X-Accel-Redirect标头配合使用。我收到此错误:

*24 rewrite or internal redirection cycle while internally redirecting to "/app/index.php", client: 127.0.0.1, server: project.dev, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "project.dev"

nginx 站点配置:

server {
    listen      80;
    server_name project.dev;
    root        /www/project;

    location ^~ /f/ {
        internal;
        alias /www/project/files/;
    }

    location / {
        try_files $uri /app/index.php$is_args$args;
    }

    include php.conf;
    include apache.conf;
}

/www/project/app/index.php

<?php
header('X-Accel-Redirect: /f/image.jpg');
exit;

我添加了^~位置块,因为我认为这将终止位置块的匹配,从而解决这个问题。这可能是我的误解。

知道如何修复这个问题吗?


使用 php.conf 和 apache.conf 进行更新

php.conf:

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
  fastcgi_pass   127.0.0.1:9000;
  fastcgi_index  index.php;
  fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
  include        fastcgi_params;
}

Apache.conf:

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
    deny  all;
}

答案1

您还没有告诉 nginx 要查找什么索引文件。

尝试添加

index index.php;

在 root 指令之后。

答案2

看来我没能重启 nginx 服务器。几天后我再次查看时,它突然又能正常工作了,我意识到一定是重启后的问题。很抱歉浪费了您的时间。

现在,如果我只能让它发送正确的Content-type标题......

相关内容