[ad_1]
Not with the free version, but even with PRO I would still recommend you redirect the old domain via htaccess instead.
Just add this at the top of the .htaccess file on your old domain and it will redirect everything, even non-WP files, images etc.:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ https://new-domain.com/$1 [R=301,L]</IfModule>
