我正在尝试从查询参数中提取网址,然后使用Nginx重定向到该网址。
例如: http://example.com/redirect/?url=www.google.com
重定向到www.google.com
我已经尝试了返回和重写,到目前为止没有运气。 感谢任何帮助。
location /redirect/ {
return 301 $arg_url;
#this one appends example.com with the url.
}
and ...
location /redirect/ {
rewrite $arg_url last;
}