The question the rot report could not answer
When we measured how much of the Australian web is broken, dead links were only part of what we saw. A steady 8.9% of every link we followed never answered directly — it answered with a redirect. That report had no room to ask the obvious follow-up: a redirect to where, and why?
A redirect is not a fault. Moving a page and redirecting the old address is exactly right,
and most of the redirects here are doing precisely that. But a meaningful minority take you
nowhere new at all: they correct the scheme, add or drop a www, or fix a trailing
slash — work the link itself could have done.
What the redirects were for
| Kind | What happened | Redirects | Share | Avoidable |
|---|---|---|---|---|
| Moved on the same site | A genuine relocation — the page lives at a different path now. | 606 | 55.4% | No |
| Trailing slash | The same path with a slash added or removed on the end. | 221 | 20.2% | Yes |
| Sent to another site | The destination is a different site altogether. | 164 | 15.0% | No |
| Scheme upgrade | The link said http:// and the server moved it to https://. Same host, same path. |
58 | 5.3% | Yes |
| www added or removed | The link used the wrong hostname variant — example.com.au against www.example.com.au, or the reverse. |
43 | 3.9% | Yes |
| Scheme upgrade and www | Both at once: an http:// link to the wrong hostname variant. |
1 | 0.1% | Yes |
323 of 1,093 redirects (29.6%) were housekeeping. Every one of those is a link on a live page pointing at an address the site itself was always going to correct — an extra round trip that exists because the link was written against the wrong scheme or the wrong hostname, and nobody updated it.
Permanent or temporary
A 301 tells search engines the move is permanent and the destination should
inherit the original's standing. A 302 says the opposite — keep indexing the old
address, this is temporary. Sites that use 302 for a permanent move quietly hold
their own ranking signals at the old URL.
| Status | Meaning | Count | Share |
|---|---|---|---|
301 |
Moved permanently | 631 | 57.7% |
302 |
Found — temporary by default | 404 | 37.0% |
307 |
Temporary redirect, method preserved | 34 | 3.1% |
308 |
Permanent redirect, method preserved | 12 | 1.1% |
303 |
See other | 12 | 1.1% |
What a housekeeping redirect actually costs
Individually, almost nothing — a few hundred milliseconds. At the scale of a whole site it adds up in four ways:
- A round trip per link. Every visitor who follows one waits for a request that exists only to be told to make another request. On a slow mobile connection that is the difference between fast and merely acceptable.
- Crawl budget. Search engines spend a fetch on the redirect and another on the destination. On a large site that is a meaningful share of what a crawler was willing to spend on you.
- Chains. Housekeeping redirects compose. An
http://link to the wrong hostname variant can take two hops before anything is served, and chains lose more at every step. - They hide real breakage. A link checker that follows redirects silently reports all of these as working, so nobody ever finds out the links are wrong.
The fix is not to remove the redirects — they are the safety net, and they should stay. It is to stop relying on them from your own pages: link to the canonical address directly, so the safety net only catches links you do not control.
Method
- Where the redirects came from
- The same scan behind our
public sector link rot census —
every
.gov.au,.edu.auand.org.audomain in Tranco listK9QPWof 1 September 2026, up to 15 links per homepage. One scan, two reports, so the servers involved were asked once. - How a redirect is classified
- We compare the link's own URL with the
Locationthe server answered with, looking only at scheme, host and path. Query strings and fragments are ignored — they vary for tracking reasons that say nothing about the redirect. Hostnames are compared with and without a leadingwww., so awwwchange is recognised as such rather than counted as a move to another site. - What "avoidable" means
- A scheme upgrade, a
wwwchange, both together, or a trailing slash. In each case the destination is the same page on the same site, reachable by writing the link differently. It does not mean the redirect should be switched off. - What we did not follow
- We record the first hop only. Our checker deliberately does not follow redirects, so a chain is counted once, by its first response. Real chain depth is therefore undercounted here.
- Known limits
- One request per link, at one moment, from one country. Servers that vary their response by client or region will be misread. Every redirect seen in this scan was classified.
- Data
- The full aggregate is published as au-redirect-report.json under a CC BY 4.0 licence.
Check your own redirects. Our link checker deliberately
does not follow redirects — it shows you the 301 or 302 and where
it points, so you can see which of your links are taking the long way round.