Hey everyone quick question. I need to redirect my site that is developed now and keep all the seo I have done to it.... keep the site now showing up in google, but when you click in google it takes you to a new domain... is this possible?
Doing 302 redirects should help you achieve what you want, though not sure why you dont want your new domain showing in Google
Here is the problem. I have developed an affiliate site, spent $200 doing this, and now have realized it is against their TOS to use their company name in the domain name. My domain name is an exact match for a highly targeted and searched keyword for this product. If I do a 302 redirect will I keep ranking for those keywords and everything? Will the affiliate see the sale come from the new name and not the one against their TOS? I already rank for many of the keywords related to this product, but if I change the entire site I think I will loose those ranking right?
to redirect whole site to new domain add this in you .htaccess RewriteEngine on Rewriterule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]
And that will keep my search engine titles and stuff the same, but just change the domain that people land on?