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.

Physical-Server-vs-Virtual-Server-5-Key-Differences-Explained

Physical Server vs Virtual Server- 5 Key Differences Explained

In the digital infrastructure, server plays a vital role. It serves as the backbone for…

How to check OpenSSL vulnerability?

Please note the following versions of OpenSSL: OpenSSL 1.0.1 through to 1.0.1f (inclusive) is vulnerable…

eNlight Cloud VM Frequently Asked Questions

eNlight is an intelligent, auto-scalable cloud that calculates the need for additional resources and the…