Here are the few lines of code you can add into your .htaccess to redirect your old domain to new domain with 301 (permanent redirect) code.
Open .htaccess file in any editor and add following below lines, please replace websterz.pk with your own domain.
RewriteEngine On RewriteCond %{HTTP_HOST} ^websterz.pk [NC,OR] RewriteCond %{HTTP_HOST} ^www.websterz.pk [NC] RewriteRule ^(.*)$ https://websterz.pk/$1 [L,R=301,NC]
That’s all 🙂