redirect directory domain to another directory domain nginx

server {
listen 80;
    root /var/www/gab-music.com/htdocs;
index index.php index.html index.htm;
server_name www.gab-music.com gab-music.com;
#rewrite ^ https://tesesong.com/music$request_uri? permanent;
rewrite ^/mp3/(.*) https://tesesong.com/music/$1 break;

}