Hi,
My client just got a takedown notice b/c his domain had a trademarked name in it. Now we’ve got to point a new domain name at the old site. It’s a huge pr3 site that gets a ton of traffic and has a ton of links pointing at it.
Since the new domain and old domain are on the same server, is this the best way to redirect everything? I found this snippet of code on the net and it seems right but wanted the experts to weigh in before I flip the switch.
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.newdomain\.com
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
thanks,
takayuki