mirror of
https://github.com/nginx/nginx.git
synced 2024-11-24 13:49:05 +08:00
Perl: named locations in $r->internal_redirect().
This commit is contained in:
parent
8df08b02b8
commit
29fea7d9ec
@ -257,6 +257,10 @@ ngx_http_perl_handle_request(ngx_http_request_t *r)
|
||||
}
|
||||
|
||||
if (uri.len) {
|
||||
if (uri.data[0] == '@') {
|
||||
ngx_http_named_location(r, &uri);
|
||||
|
||||
} else {
|
||||
ngx_str_null(&args);
|
||||
flags = NGX_HTTP_LOG_UNSAFE;
|
||||
|
||||
@ -266,6 +270,8 @@ ngx_http_perl_handle_request(ngx_http_request_t *r)
|
||||
}
|
||||
|
||||
ngx_http_internal_redirect(r, &uri, &args);
|
||||
}
|
||||
|
||||
ngx_http_finalize_request(r, NGX_DONE);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user