Domain Migration with SEO Rankings Preservation

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
Domain Migration with SEO Rankings Preservation
Medium
from 1 business day to 3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Domain Migration with SEO Preservation

Domain change is one of highest-risk SEO scenarios. Search engines perceive new domain as new site. Proper preparation reduces ranking loss from 50–80% to 10–20% and recovery time from 6–12 months to 2–4.

Pre-Domain Change Checklist

4+ weeks before:

  • Get new domain and configure hosting
  • Deploy site copy on new domain
  • Generate list of all old domain URLs (Screaming Frog, sitemap)
  • Register new domain in Google Search Console and Yandex Webmaster

1 week before:

  • Set up all 301 redirects (old → new domain)
  • Update internal links in content to new URLs
  • Update canonical URLs
  • Check hreflang if multilingual site

Day X:

  • DNS switch
  • Check redirect functionality
  • Submit Change of Address in GSC

301 Redirects: Nginx

# Old domain: redirect everything to new one
server {
    server_name old-domain.com www.old-domain.com;
    return 301 https://new-domain.com$request_uri;
}

301 Redirects: Apache (.htaccess)

RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?old-domain\.com$ [NC]
RewriteRule ^(.*)$ https://new-domain.com/$1 [R=301,L]

Change of Address in Google Search Console

GSC → Old Property → Settings → Change of Address → Select new property.

Requirements:

  • Both domains verified in GSC
  • 301 redirects active for minimum 180 days
  • Site accessible on new domain

Updating Backlinks

Send emails to site owners with most links to your domain. Tools: Ahrefs, Majestic, Semrush for finding backlinks.

Update in Yandex.Webmaster

Yandex doesn't have automatic Change of Address. Need to:

  1. Add new site to Webmaster
  2. Add sitemap of new domain
  3. Yandex will pick up 301 redirects automatically within 2–8 weeks

Monitoring After Switch

# Script to check keyword positions via Semrush API
import requests

def check_keyword_positions(domain, keywords):
    positions = {}
    for kw in keywords:
        resp = requests.get(
            'https://api.semrush.com/',
            params={
                'action': 'report',
                'type': 'domain_organic',
                'key': SEMRUSH_KEY,
                'domain': domain,
                'phrase': kw,
                'database': 'ru',
            }
        )
        positions[kw] = parse_position(resp.text)
    return positions

Track weekly first 3 months. Typical behavior:

  • Week 1–2: 20–40% drop
  • Week 3–6: stabilization
  • Month 2–4: recovery to 80–95% of original

Full preparation and domain migration execution — 1–2 weeks of work.