location ~ /give_me/(.*)$ {
return 301 http://site.com/page/$1;
}
location ~ ^/page/(.*)$ {
proxy_pass http://site.com/$1;
}
rewrite ^/give_me/(.+)$ /page/$1 permanent;
location ~ ^/page/(.*)$ {
proxy_pass http://site.com/$1;
}