How do you redirect a URL, say /shop to another URL, say /product within your website? You add a redirect in location.
location /shop/ {
rewrite ^/shop/(.*)$ /product/$1 permanent;
}
This location redirect does the following:
/shop/[whatever] it to /product/[whatever]So it will redirect /shop/ABCDEF and /shop/ABCDEF/ to /product/ABCDEF and /product/ABCDEF/ respectively.