How to Optimize Initial Server Response Time in WordPress
Website speed plays a significant role in delivering a positive user experience and improving search…
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.
Website speed plays a significant role in delivering a positive user experience and improving search…
Cloud migration comes with several benefits. These include cost savings, improved agility, robust security, and…
The control panel provides a complete interface for website management, and various administrative works, including…