301 redirect issue

sidaz

Regular Member
Joined
Jan 25, 2010
Messages
403
Reaction score
108
Got couple website deindexed by Google, now i made redirect 301 to 1 page, there are issue i can redirect only 1 page manually to another. Deindexed website had over 25k indexed links Google i want them all redirect to new domain with same content, any ways to make auto 301 redirect without manually changing?
 
You need to do a 301 wildcard redirect using .htaccess , it's a few lines of code, Google around about 301 wildcard redirect, not to hard to find a guide.
 
RewriteEngine On

RewriteRule (.*) http://www.xxxxxxx.com/$1 [R=301,L]
 
what's different wildcard redirect instead simple?
 
Back
Top