
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
Top 6 Ruby On Rails Benefits That Make It Startup-Friendly
Ruby on Rails is a popular MVC (Model-View-Controller) framework used by web developers worldwide. This open-source...
5 Key Highlights on Why Python has Emerged As Favorite Programming Language in 2022!
In the dominating era of programming languages like Kotlin, Go lang, and Ruby on Rails, inevitably, the second preferred...