Topshop to ASOS - 80% Off in Search Visibility Migration - SISTRIX
- February 16, 2021
- Migrations

AI Summary
After ASOS bought Topshop's digital assets out of the Arcadia administration in February 2021, topshop.com was retired as an independent domain and Topshop became a brand section inside asos.com. SISTRIX recorded topshop.com losing around 80 percent of its search visibility within weeks, which the analysis attributes to wildcard and 302 redirects rather than specific 301 mappings to equivalent pages.
- Acquisition announced 1 February 2021, migration and visibility collapse followed mid month.
- Redirect approach: wildcard rules plus 302 temporary redirects instead of URL level 301s.
- On the query mini dresses, the two brands lost half their combined share of the top ten within weeks.
- ASOS sold a majority stake in Topshop and Topman to Heartland in September 2024, and topshop.com has since relaunched as a standalone site.

What was migrated
ASOS acquired Topshop's digital assets from Arcadia after the group went into administration. Rather than run topshop.com as an independent property, ASOS integrated Topshop as a brand section within asos.com, creating subdirectories for the womenswear and menswear ranges. That is a defensible commercial decision. The execution is where it came apart.
The migration used wildcard redirects, and SISTRIX notes 302 temporary redirects were also in play. Chris Green, quoted in the analysis, suggested the 302s could buy ASOS some time while permanent solutions were developed. The measured outcome was that topshop.com lost approximately 80 percent of its search visibility, with the analysis concluding the failure was not mapping specific URLs to their closest content equivalents on asos.com. The article's phrase for the result is a tragic waste of rankings and traffic.
Why wildcards destroy rankings
A ranking is a relationship between a query and a page. When you redirect /clothing/dresses/mini-dresses/ to a generic Topshop brand landing page, you have not moved the ranking, you have deleted the page that held it and sent its visitors somewhere less specific. The destination does not answer the query the source page answered, so there is nothing for the ranking to attach to.
The competitive dimension makes this worse than a simple loss. On the mini dresses example, the two brands together dropped from around a fifth of the top ten to losing half of that share within weeks. Those positions did not sit empty waiting for ASOS to fix its redirects. Competitors moved up, accumulated click data and links in those positions, and defended them. That is why the timing of the fix matters so much more than the difficulty of it.
| Redirect approach | What the destination is | What transfers | When to use it |
|---|---|---|---|
| URL level 301 to closest equivalent | The page on the new site that answers the same query | Relevance, link equity and the ranking itself, in most cases | Every URL with traffic, links or revenue. This is the plan. |
| Directory level 301 | The parent category on the new site | Some relevance, most link equity | Mid tail URLs where an exact equivalent genuinely does not exist |
| Wildcard to a brand hub | One generic page for thousands of source URLs | Link equity, diluted. Almost no query relevance | Long tail leftovers only, after individual mapping is complete |
| Wildcard to the homepage | The homepage | Very little. Often treated as a soft 404 | Effectively never on a commercial migration |
| 302 anywhere permanent | Whatever the target is | Delayed and uncertain consolidation | Genuine temporary diversions only |
Redirect strategies ranked by how much of a ranking survives. The Topshop migration relied on rows three and five.
Building the map that was missing
The work SISTRIX says did not happen is a URL level mapping exercise. It is laborious rather than difficult, and it is scoped by value rather than by volume. You do not map every URL by hand. You rank them by what they earn and map by hand until the return stops justifying the time.
# 1. Crawl the legacy site before it is switched off
# Screaming Frog, connect GA4 + Search Console + Ahrefs under API Access
# Export: Internal > HTML
# 2. Rank by value, not by URL count
import pandas as pd
old = pd.read_csv('internal_html.csv')
old['value'] = (old['GSC Clicks'].fillna(0) * 1.0
+ old['Referring Domains'].fillna(0) * 25.0)
old = old.sort_values('value', ascending=False)
old.head(2000).to_csv('map_by_hand.csv', index=False)
# 3. Everything below the cut gets a directory level rule
# 4. Validate before launch: every source must return 301 to a 200
# Screaming Frog > Mode > List > paste old URLs > Always Follow Redirects
# Reports > Redirects > All RedirectsStep four is the one teams skip and regret. Load the full legacy URL list in list mode, enable Always Follow Redirects, and export the redirect chains report. You are looking for three defects: redirects landing on 404s, chains longer than one hop, and any source URL still returning 200 because a rule never matched it. All three are cheap to fix the week before launch and expensive to fix afterwards.
What has changed since
The story did not end with the migration. In September 2024, ASOS sold a majority stake in Topshop and Topman to Heartland, the holding company behind the Danish retailer Bestseller, for a reported 135 million pounds, retaining a 25 percent share along with certain design and distribution rights. As part of that deal topshop.com was to relaunch as a standalone site, and the brand has since returned online in its own right, including a European webstore covering 23 countries.
Checked live in July 2026, topshop.com resolves and serves its own site rather than redirecting to asos.com. So the domain has now been through two migrations in the opposite directions inside four years. Whatever residual authority survived the 2021 consolidation had to be rebuilt on a domain whose historic URL structure had been redirected away wholesale, which is the compounding cost of a wildcard map that nobody wants to think about at the time: it makes any future reversal much harder, because there is no preserved mapping to reverse.
The takeaway for anyone planning a brand consolidation
Budget the redirect map as a deliverable with a named owner and a deadline that sits before the launch date, not as a technical detail in the deployment ticket. Cap the manual mapping by value rather than trying to map everything. Use 301s unless you are genuinely planning to reverse the change. And validate the map against the live legacy URL list before the switch, because a rule that looks correct in a config file and a rule that actually fires are different things.
Related reading: diagnosing a ranking drop for separating migration damage from algorithm updates, self referencing redirect loops for the most common implementation bug in a large map, index bloat for what happens when legacy URLs linger alongside their replacements, and the internal linking guide for rebuilding authority flow on the destination site.
FAQ
SISTRIX recorded topshop.com losing roughly 80 percent of its search visibility within weeks of the February 2021 migration. On a sample query, mini dresses, the two brands went from holding around 20 percent of the top ten positions to losing half of that visibility over the same period.
SISTRIX attributes it to the redirect approach. Rather than mapping specific URLs to their closest content equivalents on asos.com with 301s, the migration leaned on wildcard rules and used 302 temporary redirects. Wildcards send large groups of unrelated URLs to a single generic destination, so the topical relevance that earned each ranking does not transfer.
As a fallback for the long tail, yes. Once you have mapped every URL with meaningful traffic, links or revenue individually, a wildcard catching whatever remains is sensible housekeeping. The failure mode is using the wildcard as the plan rather than as the safety net underneath the plan.
301, in almost every case. A 302 signals that the original URL should stay indexed because the change is temporary, which is the opposite of what a brand consolidation means. The argument that a 302 buys you time only holds if you genuinely intend to reverse the move, and reversing a brand merger is rare.
A well executed migration onto an equal or stronger domain typically dips by a low double digit percentage and recovers within one to three months. Anything approaching an 80 percent visibility loss indicates a mapping problem rather than the normal turbulence of recrawling and reindexing.
Partially, and the sooner the better. Replacing wildcard rules with specific 301s months later still helps, but rankings that competitors have absorbed in the meantime are much harder to win back than they were to keep. Recovery is a competitive fight, not just a technical correction.
Consolidating two ecommerce brands onto one domain?
An advanced audit builds and validates the URL level redirect map before your launch date, not after it.
Source: https://www.sistrix.com/blog/topshop-to-asos-80-off-in-search-visibility-migration/
Claude Vincent is a technical SEO consultant focused on crawlability, rendering, and AI-search visibility. He writes the field guides and case studies at SEO ProCheck, with a bias toward the durable, unglamorous work that decides whether search engines and AI answer engines can actually read and cite a site.
About SEO ProCheck
Technical SEO consulting and GEO strategy with 20 years of enterprise experience. Case studies, resources, and tools for search and AI visibility.
Work With Me
Technical SEO audits, GEO strategy, site migrations, and international SEO. Hourly consulting for teams who need hands-on support, not just reports.







