I need some help to convert .htaccess apache rewrite to Nginx.
My WordPress website has this URL structure:
https://domain.com/our-office/laos/
And I need to change to:
https://domain.com/laos/
I did that easily with Apache and .htaccess with:
Redirect 301 /our-office/laos /laos/
But now that I moved to Nginx, I cannot get the same results.
Thanks.