Redirect all traffic to new site, htaccess

Question: Redirect all traffic to new site, htaccess

Answer: Replace the old and new domain names. All urls after the domain name will also be redirected to new domain.

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^old-domain.com$ [NC,OR]
    RewriteRule (.*)$ http://new-domain.com/$1 [R=301,L]
</IfModule>

Leave a Comment

Scroll to Top