How to redirect from one blog URL to another blog URL
The hosting has several measures through that cPanel hosting ar counted as best to host any web site because to its Operating system level security features and functionality. For an administrative control over each directory of a hosting resources on the web server a file known as .htacess has some permission and this file also known as distributed configuration file in which on a aper-directory basis provide a way to make configuration changes . A file, containing one or additional rules is placed in a particular document directory, and therefore the directives apply to that directory, and all sub directories thereof. If you would like to direct all the URLs from one web log to a different web blog URLs then add the rewrite rules as follow in .htaccess files.
For Example :
If we redirect to an old web blog from “http://www.xyz.com/blog to new domain http://www.abc.com. you only need to add the subsequent rewrite rules into old web blog .htaccess files means when any one access the URL ” http://www.xyz.com/blog/anything will automatically redirected to“http://www.abc.com/anything ”.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^bestdesigns.co.inblog
RewriteRule ^(.*)$ http://www.bestdesigns.co.in/blog$1 [R=301,L]
RewriteRule ^$ http://www.indianwebportal.com/ [L]
RewriteRule (.*) http://www.indianwebportal.com/$1 [L]
</IfModule>
Note : Replace “xyz.com/blog” equal to your old blog url and also Replace “www.abc.com” equal to new blog url.