I was having this rewrite rule in Apache2
RewriteRule country/usa[/]*$ /en/country/united-states [L,R=301,NC]
I have tried to build an equivalent rewrite rule in nginx like this
server {
rewrite ^country/usa[/]*$ /en/country/united-states last;
#the remaining of the virtual host
}
but this didn't work :( any idea of how to do this?
Thanks for your help