diff options
author | Maxim Dounin <mdounin@mdounin.ru> | 2011-12-19 14:11:48 +0000 |
---|---|---|
committer | Maxim Dounin <mdounin@mdounin.ru> | 2011-12-19 14:11:48 +0000 |
commit | d79f4523f8c3b156be4f80fa1f1615217e30bbfa (patch) | |
tree | 6036902ded76ac3e0fc9006c904a66cbe1f39dd1 /src/http/ngx_http_core_module.c | |
parent | c5968a998c9b5cb0bec0b7d914832e43357d41cc (diff) | |
download | nginx-d79f4523f8c3b156be4f80fa1f1615217e30bbfa.tar.gz nginx-d79f4523f8c3b156be4f80fa1f1615217e30bbfa.zip |
Added clearing of r->valid_unparsed_uri on internal redirects.
This resolves issue with try_files (see ticket #70), configuration like
location / { try_files $uri /index.php; }
location /index.php { proxy_pass http://backend; }
caused nginx to use original request uri in a request to a backend.
Historically, not clearing of the r->valid_unparsed_uri on internal redirect
was a feature: it allowed to pass the same request to (another) upstream
server via error_page redirection. Since then named locations appeared
though, and it's time to start resetting r->valid_unparsed_uri on internal
redirects. Configurations still using this feature should be converted
to use named locations instead.
Patch by Lanshun Zhou.
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r-- | src/http/ngx_http_core_module.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 3c5711748..1d5ee5dc6 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -2506,6 +2506,7 @@ ngx_http_internal_redirect(ngx_http_request_t *r, #endif r->internal = 1; + r->valid_unparsed_uri = 0; r->add_uri_to_alias = 0; r->main->count++; |