Redirect OLD/Path to NEWURL/Path

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^olddomin\.com
RewriteRule ^(.*)$ https://newdomain.com/$1 [R=301,L]
</IfModule>

This is what you’re looking for, before the WP block in your .htaccess.