Last update: April 6, 2021 | Reading time: < 1 minute
To redirect an entire old domain and all URLs to a new domain, simply paste the following code at the top of the .htaccess file:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^olddomain.com$ [NC]
RewriteRule ^(.*)$ [R=301,L]
The code above will redirect a URL:
olddomain.com/about
has:
newdomain.com/about
Hope this helps.