Este sitio web utiliza cookies para realizar análisis y mediciones de tus visitas. [ Acepto ] [ Más información aquí ].

How to Redirect to Other Domain

If you have migrated a website to a new domain, but keeping the same contents, use this rule in your .htaccess file to redirect your visitors to the equivalent pages in the new domain:

Options +FollowSymLinks

RewriteEngine on

RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]

Añadir comentario