
Many times we have an in CMS and eCommerce website to change the domain due to maintenance or other reason but the main headache is the sub URL (categories or collection) should work as it is otherwise we need to write the 301 URL redirect for each and every URL to not get the SEO errors. Let’s take a look here, Without Domain Name change how to keep all Sub URLs the same as?
This tutorial will be helpful for the following CMS:
- WordPress development
- Joomla development
- Drupal development
An eCommerce platform that gets help from this:
- Magento eCommerce Store Development
- BigCommerce Online Store development
- Volusion Store Development
- VirtueMart
So here is the simple and easy option for keeping all URLs the same while changing the domain name that will work using the add the few lines in the htaccess file (if the file is not available create it .htaccess).
Append the following code in the file.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(?:www.)domain.com$ [NC]
RewriteRule ^ https://newdomain.com%{REQUEST_URI} [L,R=301]
AboutChetan Sheladiya
Related Posts
What are the Benefits of Hiring Remote Developers During Covid-19 Outbreak? Let us See
As we know, 2020 didn’t go as we all had expected. The Covid-19 outbreak has affected a large number of businesses. During...
List of Outlines Why People Still use ASP.Net Web Forms in 2021?
Asp.Net is a cross-border platform used to deploy web apps on your Operating system. This web application framework started as...