How many clicks from the home page this page sits
Depth is the shortest route to a page, not the route in your navigation diagram. That distinction is the whole check: a page you think of as three levels down may be one click from the home page, or nine, and neither matches the sitemap you drew.
The short answer
Click depth is the shortest path from your home page to a page, counted in links, and it is measured on the real link graph rather than on the structure you designed. Pages deeper than three or four clicks get crawled less often and rank worse for it. The three-click rule is a heuristic about shortest paths, not a law about menus.
The shortest route, not the one you designed
Depth is computed by walking outward from your home page and recording how many links it took to arrive somewhere the first time. Any link counts. A footer link to a legal page makes it depth one, however far down the information architecture puts it. A related-articles module can pull a page from depth six to depth two without anyone intending it.
Which means depth is a property of your link graph and not of your URL structure. /shop/knives/carbon/kn-2000 looks like depth four and can be depth two if the home page features it. /about looks like depth one and is depth five if the only route to it runs through a support section.
Two consequences follow. Fixing depth means adding a link, not moving a URL, which is a much cheaper intervention than it first appears. And a depth figure that surprises you is usually telling you something true that your architecture diagram is not.
The three-click rule, corrected
As usually stated, that every page should be reachable in three clicks, the rule is false. It has been tested and there is no threshold at which pages stop being crawled or ranked. Large sites have plenty of valuable pages at depth six that perform perfectly well.
What is true is a tendency rather than a rule, and it has two separate mechanisms behind it.
- Crawl frequency falls with depth. Not because depth is penalised, but because a crawler allocates attention and pages that are hard to reach get revisited less. The practical effect is staleness: a change to a deep page takes longer to be noticed.
- Depth correlates with how much your own site recommends a page. A page at depth seven is usually a page nothing prominent links to, and that is the real signal. Depth is a proxy for internal importance, which is why it tracks performance without causing it.
Read that second one carefully, because it changes the fix. If depth were causal, you could improve a page by shortening its route from anywhere, including a link in a mega-footer. Since depth is mostly a symptom of nothing linking to it, the useful fix is a link from a page that is genuinely about the same subject, and the depth improvement is a side effect of that.
The version of the rule worth keeping is about people.
A visitor who has clicked four times without arriving is a visitor who is about to use your search box or leave. That was the original observation behind the rule and it is still the best reason to care. It also happens to produce the crawl behaviour you wanted, which is the usual pattern in this audit.
Four ways good pages end up deep
Nobody buries a page deliberately. These four do it as a side effect, and all of them are common.
- Pagination with only a next link. The single largest cause. Page 12 of an archive is eleven clicks from page one, and every article on it inherits that distance. Numbered page links collapse the whole series to a couple of hops, which is why the pagination check is really a depth check wearing a different name.
- Chronological archives as the only route. If the way to an article from 2019 is through year, then month, then a paginated list, that article is deep for structural reasons that have nothing to do with its quality.
- Navigation that only renders after a click. A menu that expands in script, a filter panel that needs interaction, a route that only appears once a selection is made. Those links do not exist in the served HTML, so the pages behind them are deeper than the interface suggests, or absent entirely.
- A section removed from the main navigation. A redesign drops a section from the header for tidiness. The pages are still there, still linked from within their own section, and every one of them just moved two hops further out.
The fixes are correspondingly boring: numbered pagination, hub pages that link to the best of a section rather than the newest, contextual links inside articles, and server-rendered navigation. A mega-footer linking to two hundred pages is the fix people reach for first, and it is the weakest of them, because a link that appears identically on every page is a link that says nothing about which page it points at.
A shortest path needs the whole graph
To know how many clicks a page sits from your home page, you have to have followed the links. The number is a property of every route into the page, not of the page itself, so it does not exist until the walk is done.
This one needs the full crawl
Depth is the length of the shortest path from your home page, and a shortest path is computed over the whole link graph rather than read off the page at the end of it.
The instant search on this site audits a single page, so rather than show you a verdict it cannot support, this guide sends you to the place the check actually runs.
The distribution across every page at once, which is the version that finds buried sections rather than buried pages, is reported separately.
Does this affect AI search?
Yes, and more sharply than it affects search, for a reason that is about budget rather than about ranking. Search crawlers are patient and comprehensive; they will get to depth eight eventually. Agents that fetch pages to answer a question are neither. They follow a small number of links from wherever they start, and a page four hops beyond that is not reached at all.
The consequence is that depth acts as a rough filter on what of your site is available to be quoted. A well-linked page can be discovered by an agent following one or two links from a search result. A page reachable only through eleven pagination hops is, in practice, not part of your site as far as that agent is concerned.
Which gives the sitemap a modest role here. Listing a deep page makes it discoverable without the walk, and that helps a comprehensive crawler more than an interactive one. The reliable fix remains the link.
Why distance from the home page is only Important
Because nothing is excluded. A deep page is crawled, indexed and ranked, and can outrank a shallow one. There is no threshold that removes it, which is the line Critical is drawn at. The failures that do exclude a page, being unreachable or being blocked, are separate checks with higher ratings.
It sits well above a refinement because the effects are cumulative and quiet. Slower recrawls mean your changes take longer to register. Less internal recommendation means the page competes with less behind it. Neither shows up as an incident, and both compound over the years a page exists.
The rating also reflects an unusually good ratio between cost and effect. One numbered pagination component, or one hub page, can move hundreds of URLs several hops closer in an afternoon. Findings where a single change fixes a population, rather than a page, deserve to be read before the ones where every instance is its own piece of work.
Measuring depth for one page by hand
A breadth-first walk two levels deep is enough to answer the question most people actually have, which is whether a given page is reachable quickly at all.
TARGET=/guides/carbon-steel
HOME=https://example.com
links() { curl -s "$1" | grep -o 'href="/[^"#?]*"' | sed 's/href="//;s/"$//' | sort -u; }
# depth 1: straight off the home page?
if links "$HOME" | grep -qx "$TARGET"; then
echo "depth 1"
exit 0
fi
# depth 2: off anything the home page links to?
for l in $(links "$HOME"); do
if links "$HOME$l" | grep -qx "$TARGET"; then
echo "depth 2, via $l"
exit 0
fi
done
echo "deeper than 2, or not reachable by links at all"Two things this exposes quickly. If the script finds no route and the page works in a browser, your navigation is probably rendered in script and the links are not in the HTML. And if the only route it finds is through a paginated archive, you have located the cause rather than the symptom.
Questions this check raises
- Is the three-click rule real?
- As stated, no: there is no threshold where a fourth click causes a penalty. What is real is the correlation behind it. Pages further from the entry point receive fewer internal links, are crawled less often and are treated as less important, and three clicks is roughly where that decline becomes visible on a normal site.
- How is click depth different from URL depth?
- URL depth counts the slashes in the path; click depth counts links traversed. They diverge constantly. A page at /a/b/c/d/e can be one click from the home page if a hub links to it directly, and a page at /product can be six clicks deep if nothing links to it except a paginated listing.
- How do I reduce depth without adding a mega menu?
- Add hub pages and contextual links rather than navigation. A curated index page that links to thirty deep pages pulls all thirty up a level, and it earns its place for readers too. Stuffing links into the header raises depth for everything equally, which is the same as raising it for nothing.