Hi, I hope this is the right forum for this. I have a blog on a subdomain. I want to transfer that blog on it's on domain, and I don't know what's gonna happen with pages from this site. I've got few pages that rank high for their keywords, so yhe question is, if I redirect subdomain abc.abc.com to abc.com , what happens when someon click on abc.abc.com/page1 ? Is there a way to redirect whole site? Regards
Either you can redirect whole site to one domain or can redirect each page to specific domain page. You will have to write 301 redirect code in your .htaccess file.
Is this the right thing to do? # BEGIN WordPress RewriteEngine On RewriteCond %{HTTP_HOST} ^www.abc.abc.com RewriteRule (.*) http://www.abc.com/$1 [R=301,L] # END WordPress