Nginx + Apache 尾部斜杠重定向

Nginx + Apache 尾部斜杠重定向

我有一个在端口Nginx上运行的服务器80,作为代理,Apache 2.2正在监听127.0.0.1:8080

当我访问时,http://hostname/subfolder/它运行良好。
当我访问时http://hostname/subfolder,它会将我重定向到http://hostname:8080/subfolder/错误的位置。

据我所知,Apache 返回了错误的重定向,但UseCanonicalNameUseCanonicalPhysicalProxy都设置为Off

关于如何修复该问题有什么想法吗?

答案1

我也遇到了这个问题,我可以在我的 nginx 配置中的 proxy_pass 指令之后使用 proxy_redirect 指令来修复它:

proxy_redirect http://example.com:8080/ http://example.com/ 

这是我的完整 nginx 配置(就我而言,Apache 在端口 81 上并托管两个站点。我添加了两个特定于站点的 proxy_redirect 行,因为我不确定如何添加单个通用的行。)

server {
    listen 80;

    access_log /var/log/nginx/apache-proxy.access.log;

    location / {
        proxy_pass http://localhost:81;

        #fix for apache redirects that include the port number
        proxy_redirect http://nfriedly.com:81/ http://nfriedly.com/;
        proxy_redirect http://misticflame.com:81/ http://misticflame.com/;

        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        client_max_body_size 10m;
        client_body_buffer_size 128k;
        proxy_connect_timeout 6000;
        proxy_send_timeout 6000;
        proxy_read_timeout 6000;
        proxy_buffer_size 4k;
        proxy_buffers 4 32k;
        proxy_busy_buffers_size 64k;
        proxy_temp_file_write_size 64k;
        send_timeout 6000;
        proxy_buffering off;
        proxy_next_upstream error;

    }
}

注意:这是 5 年前 nginx 1.0 之前的版本。以下是当前版本的 proxy_redirect 文档:http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_redirect

答案2

如果 Apache 上的 ServerName 指令设置为“hostname:8080”,请删除“:8080”或将其更改为“hostname:80”。您还可以添加“proxy_set_header Host $host:80”

答案3

我很久以前就遇到过这个问题。我记得它与 HTTP RFC 有关,末尾的斜杠表示目录(/test/),末尾没有斜杠则表示文件(/test)

长话短说,添加一个重写规则,如果没有,则会在请求中添加一个尾随斜杠。

看着已解决:Nginx 服务器的尾部斜杠问题

高温

答案4

也许 nginx 没有设置代理标头来告诉 apache 原始请求是什么样的。

在 nginx 中:

proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

http://wiki.nginx.org/LikeApache

相关内容