After redirecting one domain to another verification fails for the forwarding target only

I am not sure what to answer. I other words I should to the same for wikitranslate.org as for w-t.me, i.e.

<VirtualHost *:80>
        ServerAdmin ...@gmail.com

        ServerName wikitranslate.org
        ServerAlias www.wikitranslate.org

        DocumentRoot /var/www/html/wiki

        RewriteEngine on
        RewriteCond %{REQUEST_URI} ^/\.well\-known(.*)
        RewriteRule - - [L]

        RewriteRule ^(.*)$ https://wikitranslate.org/$ [L,R=301]

        ErrorLog ${APACHE_LOG_DIR}/wikitranslate-error.log
        CustomLog ${APACHE_LOG_DIR}/wikitranslate-access.log combined
</VirtualHost>

Do I understand this correctly?