redirect all URLs to anoter blog URLs

If you want to redirect all the URLs  from one blog to another blog URLs then add the following rewrite rules in .htaccess files.
Example :
I have redirected  my old blog from “http://www.bestdesigns.co.in/blog to my new domain http://www.indianwebportal.com. I have added the following rewrite rules into old blog .htaccess files menas when any one access the URL ” http://www.bestdesigns.co.in/blog/anything ” redirect to “http://www.indianwebportal.com/anything ”

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^bestdesigns\.co.in\blog
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 “bestdesigns.co.in/blog” equal to your old blog url
and
also Replace “www.indianwebportal.com” equal to new blog url

9 Thoughts to “redirect all URLs to anoter blog URLs”

  1. Great site. A lot of useful information here. I’m sending it to some friends!

  2. I fool read a only one of the articles on your website in the present circumstances, and I definitely like your style of blogging. I added it to my favorites net age file and will be checking stand behind soon. Divert repress out my site as highly and fail me be familiar with what you think. Thanks.

  3. This is such a great resource that you are providing and you give it away for free. I enjoy seeing websites that understand the value of providing a prime resource for free. I truly loved reading your post. Thanks!

  4. I cannot thank you enough for the article.Really thank you! Great

  5. Mohit

    Amazing information blog. Thanks for sharing 🙂

  6. I`ve learned so much from your blog! Thank you!

  7. Great layout I think.

Comments are closed.