再会
我正在为 Nginx 编写一个模块,如果有几个条件适用,它应该将用户重定向到某些(本地)URL——比如 ngx_http_rewrite_module (虽然我在那个模块中找不到重定向代码)。
我的代码在所需事件上成功运行,但我无法将用户重定向到另一个页面。
我试过ngx_http_internal_redirect
了,但没有用:
static ngx_str_t ngx_redirect_script = ngx_string("/dst.php");
return ngx_http_internal_redirect(r, &ngx_redirect_script , &r->args);
也许有人知道该怎么做?谢谢!