Xen Dedicated Server
On Linux, there are applications like kernel (Xen, KVM) allows you to do virtualization on…
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.
Explore more hosting insights, tips and industry updates.
On Linux, there are applications like kernel (Xen, KVM) allows you to do virtualization on…
Earlier, cloud catered primarily to programmers. However, that is not the case anymore. A majority…
Mailman is a feature or you can say attribute of the cPanel control panel, or…