If you wish to redirect all the URLs from one site to another site’s URL, then go through the following rewrite rules in .htaccess files.

For Example …

You want to redirect your old blog site, http://www.abc.com/blog, to a new domain, http://www.xyz.com/blog. So you have to include the following rules in the old blog site’s .htaccess file, which means when someone accesses the URL http://www.abc.com/blog/anything, it will be redirected to http://www.xyz.com/anything.

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^abc\com\blog
RewriteRule ^(.*)$ http://www.abc.com/blog$1 [R=301,L]
RewriteRule ^$ http://www.xyz.com/ [L]
RewriteRule (.*) http://www.xyz.com/$1 [L]
</IfModule>

Note: Replace “www.abc.com/blog” equal to your old blog URL and also replace “www.xyz.com” equal to your new blog URL.

Popular Posts You May Read

Explore more hosting insights, tips and industry updates.

Website-and-Data-Backups-A-Practical-Guide-BLOG

Website and Data Backups – A Practical Guide

One of the most crucial parts of any business is its data. The security of…

Retail-Businesses-Are-Using-Cloud-for-Personalized-Shopping

How Cloud Technology Transforms Personalized Retail Shopping

In today’s digital arena, retail businesses are gradually depending on cloud computing to improve the…

Windows Server 8 and Windows Azure: Full of News

At the conference, Microsoft unveiled Windows Server 8. This is the first server version that…