If youโre moving your website from one domain to another, one of the biggest concerns is SEO loss. Done wrong, you can lose years of rankings, backlinks, and traffic. But if you set up 301 redirects properly, Google will understand the move and transfer most of your SEO value.
In this guide, weโll show you the best way to redirect your old website (exponent.com.bd
) to your new one (exponentnrg.com
) without losing SEO.
โ Why Proper Redirection Is Important
When you move your site:
- Your old URLs may become broken links.
- Google might treat your new domain as a completely different site.
- You risk losing your backlinks and authority.
To avoid this, a 301 redirect tells search engines:
๐ โThe old page has permanently moved to this new location.โ
This ensures that your SEO power, backlinks, and traffic safely transfer to your new domain.
๐ What is a 301 Redirect?
A 301 redirect is an HTTP status code that indicates a permanent move of a webpage from one URL to another.
- It passes 90โ99% of SEO value to the new domain.
- Itโs the best method recommended by Google for domain migration.
โ Why Use 301 Redirects?
- Preserves SEO Value โ Google passes most link equity (ranking power) to the new domain.
- User Experience โ Visitors automatically reach the right domain.
- Backlinks Saved โ All old links keep working, pointing users to the new site.
- Long-Term Solution โ Permanent redirection, safe for indexing.
๐ง Step 1: Point Old Domain to New Domain
First, ensure your new domain (exponentnrg.com
) is live and ready.
Then, connect your old domain (exponent.com.bd
) to the same server or hosting where you can control .htaccess
(if Apache), nginx.conf
(if Nginx), or use your hostโs redirect tools.
๐ง Step 2: Redirect All Old URLs to the New Ones
Option 1: Using .htaccess (Apache servers)
If your site is hosted on Apache, add this code inside your .htaccess
file:
RewriteEngine On
# Redirect the homepage
RewriteCond %{HTTP_HOST} ^(www\.)?exponent\.com\.bd$ [NC]
RewriteRule ^$ https://exponentnrg.com/ [L,R=301]
# Redirect all other pages to the new domain, keeping the same path
RewriteCond %{HTTP_HOST} ^(www\.)?exponent\.com\.bd$ [NC]
RewriteRule ^(.*)$ https://exponentnrg.com/$1 [L,R=301]
โ ๏ธ Important:
- Place this at the very top of
.htaccess
(before WordPress or other rewrite rules). - After adding, clear your browser cache and test with a tool like httpstatus.io to confirm
301
redirection.
Option 2: Using Nginx
If youโre on Nginx, add this code in your config:
server {
server_name exponent.com.bd www.exponent.com.bd;
return 301 https://exponentnrg.com$request_uri;
}
๐ Same effect: all old URLs go to their matching new ones.
Option 3: Using WordPress Plugins (Easy for Non-Developers)
If you donโt want to edit server files, install a plugin like:
- Redirection
- All 301 Redirects
- Yoast SEO Premium (Redirects feature)
Set a rule to redirect exponent.com.bd/*
โ exponentnrg.com/*
.
๐ง Step 3: Update Google & Search Engines
- Go to Google Search Console โ Add
https://exponentnrg.com/
as a new property. - Use the Change of Address Tool to notify Google of the domain migration.
- Update your sitemap.xml and submit it for the new domain.
- Update robots.txt if necessary.
๐ง Step 4: Update Everywhere
- Social media profiles, business listings, email signatures.
- Backlinks you control (guest posts, partner sites, directories).
- Internal links on your new website.
๐ Final Result
Once the redirection is set up:
http://exponent.com.bd/
โhttps://exponentnrg.com/
http://exponent.com.bd/page-name
โhttps://exponentnrg.com/page-name
๐ SEO value is preserved, visitors are redirected smoothly, and Google will recognize exponentnrg.com
as your official domain.
โก Pro Tips To Avoid SEO Loss
- Use 301 (permanent) redirects, not 302 (temporary).
- Keep the same URL structure (e.g.,
/blog/my-article
โ/blog/my-article
). - Donโt forget to update your sitemap.xml and submit it again.
- Reach out to sites that link to your old domain and ask them to update backlinks.
๐ฏ Final Thoughts
Redirecting your old website to a new domain doesnโt have to be stressful. By using a 301 redirection, keeping your URL structure intact, and notifying Google properly, you can smoothly transition without losing SEO rankings or traffic.
๐ If youโre planning a domain migration, follow these steps carefully โ and your new website will continue to grow without losing its hard-earned SEO authority.
If you need professional help with migration and SEO optimization, our team at EncodeByte is here to guide you. ๐