Nginx rewrite the first domain name secondary directory is redirected to the second domain name root directory

Nginx rewrite

is currently a secondary directory (including all the following)
http://www.abc.cn/en/.

how to redirect to the root directory of another domain name:
http://www.abc.com/.

Mar.03,2022

there is no verification, give a general idea:

server{
    servername www.abc.cn;
    location /en/ {
       rewrite ^/en/(.*)$ http://www.abc.com/$1 redirect;        
    }
}
Menu