我要做的是将所有请求路由到/rdr/extern_url
以通过我的Web服务器重定向到extern_url
,而不是通过PHP进行。{/ p>
location /rdr {
rewrite ^/rdr/(.*)$ $1 permanent;
}
如果我访问http://localhost/rdr/http://google.com
我的浏览器告诉我:
Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.
如何正确重定向?
答案 0 :(得分:5)
琐碎的检查:
$ curl -si 'http://localhost/rdr/http://www.google.com' | head -8
HTTP/1.1 301 Moved Permanently
Server: nginx/1.2.0
Date: Sun, 05 Aug 2012 09:33:14 GMT
Content-Type: text/html
Content-Length: 184
Connection: keep-alive
Location: http:/www.google.com
如您所见,Location
中的方案后只有一个斜杠。
将以下指令添加到server
后:
merge_slashes off;
我们会得到正确答复:
$ curl -si 'http://localhost/rdr/http://www.google.com' | head -8
HTTP/1.1 301 Moved Permanently
Server: nginx/1.2.0
Date: Sun, 05 Aug 2012 09:36:56 GMT
Content-Type: text/html
Content-Length: 184
Connection: keep-alive
Location: http://www.google.com
从评论中可以清楚地看出,您可能希望在没有架构的情况下将主机名传递给重定向服务。要解决此问题,您需要定义两个位置以分别处理两种情况:
server {
listen 80;
server_name localhost;
merge_slashes off;
location /rdr {
location /rdr/http:// {
rewrite ^/rdr/(.*)$ $1 permanent;
}
rewrite ^/rdr/(.*)$ http://$1 permanent;
}
}
在这里,我将/rdr/http://
定义为/rdr
的子位置,只是为了将重定向器服务保留在一个块中 - 在server
级创建两个位置完全有效