Skip to content
SectionIndexing and organic
Reviewed2026-08-01
Words1,892
Sources5
Indexing and organic

How search engines crawl, render and index a clinic website

The three separate stages between a clinic page existing and that page being able to rank, and the failure that can occur at each one.

Short answer

Crawling, rendering and indexing are three separate stages, not one. A clinic page can be fetched successfully and still never be indexed, and it can be indexed and still be excluded from the surface you care about. Diagnose in that order: is the URL discovered, is it fetched, is the content present without JavaScript, is it indexed, and only then ask why it does not rank.

Almost every conversation about clinic search performance starts in the wrong place. Someone asks why a page is not ranking for a treatment term when the more useful question is whether the page has completed the sequence that makes ranking possible at all. There are three separate stages between a page existing on a server and that page being eligible to appear on a results page, and each of them fails in its own way and for its own reasons.

Getting this order right is the single highest-value habit available to anyone who looks after a clinic website. It converts a vague problem, we are not visible, into a specific one that has a specific fix.

Diagram 03 / crawl, render, index
CRAWL QUEUE URL discovered FETCH robots.txt first HTML PARSE links + content RENDER QUEUE deferred, unbounded INDEX eligible to rank server-rendered HTML can reach the index without waiting in the render queue SEQUENCE JavaScript-dependent content waits here
Rendering is a second, separate pass with its own queue. Content that only exists after JavaScript runs is not indexed when the HTML is parsed. It is indexed later, if the render completes, which is why server-rendered content is a reliability decision.

Stage zero: discovery

Before anything can be fetched, the URL has to be known. Search engines find URLs from links on pages they already crawl, from XML sitemaps, and from redirects that point at them. A page with no internal link pointing to it and no sitemap entry is not secret, it is simply undiscovered, and this is far more common on clinic sites than people expect. New treatment pages are frequently added to a content management system and linked only from a dropdown menu that is generated in the browser after page load, which means no crawler ever sees the link in the HTML.

The test is mechanical. Fetch your own page with JavaScript disabled and read the anchor tags in the source. If the link to the new page is not there, the page is not discoverable by that route. Sitemaps help, but a sitemap is a hint and not an instruction. Google's documentation on building a sitemap is explicit that inclusion does not guarantee crawling or indexing.

Stage one: fetch

Once a URL is known, the crawler requests it. Two things decide whether that request succeeds: your robots.txt file, and your server. Robots.txt is checked first, and it governs fetching only. A URL disallowed in robots.txt will not be fetched, but it can still be indexed on the strength of external links pointing at it, which is why robots.txt is the wrong tool for keeping a page out of search. The correct tool is a noindex directive on a page the crawler is allowed to fetch, because a directive on a page nobody may fetch is a directive nobody reads.

The parsing rules are standardised in RFC 9309, which is worth reading once because it removes a large amount of folklore about wildcards, ordering and specificity. The practical clinic failure looks like this: a staging site was blocked with a sitewide Disallow: /, the site went live, and the file was copied across with the block intact. Months of work is invisible and every report shows the same flat line.

Server behaviour matters as much. Intermittent 5xx responses, aggressive bot filtering on a firewall, and rate limiting all reduce how much of a site gets fetched. Clinic sites sitting behind a security product configured to challenge anything that is not a mainstream browser will frequently block legitimate crawlers by accident.

Stage two: parse and render

The fetched HTML is parsed. Links are extracted and added to the crawl queue, and content is extracted for indexing. If the page depends on JavaScript to build its own content, that content is not present at this point. It goes into a render queue, is executed later by a headless browser, and the results are then indexed. Google describes this two-pass behaviour in its JavaScript SEO documentation.

Two things follow from that. First, the delay between parse and render is not published and is not predictable, so anything critical that only exists after render is on an unbounded timer. Second, other crawlers are not obliged to render at all, and many do not. A clinic that renders its treatment descriptions client-side may be perfectly visible in Google and completely invisible to every other system that reads the web, including the crawlers that feed answer engines.

The practical rule

Anything you would be unhappy to lose should exist in the HTML the server sends. Treatment descriptions, prices, opening hours, addresses, practitioner names, review counts and internal navigation all belong in that category. Interactive extras can render later.

Stage three: indexing

Indexing is a decision, not an automatic consequence of a successful fetch. The system evaluates whether the page is worth storing, whether it duplicates something already stored, and which version of a set of near-identical URLs should be treated as canonical. A page can be crawled repeatedly and never indexed, and Search Console will say so in plain language in the Pages report: crawled, currently not indexed.

That status is usually a quality or duplication judgement rather than a technical fault. On clinic sites the most common cause is a family of treatment pages that differ only in the treatment name, with the same three paragraphs of introduction, the same call to action, and the same stock description of the consultation process. Google's guidance on creating helpful content is the right lens: if a page exists because a keyword exists rather than because a question exists, it will struggle.

Canonicalisation, the stage nobody watches

Where several URLs serve substantially the same content, one is selected as canonical and the rest are folded into it. You can express a preference with a rel="canonical" link, but it is a signal and not a command, and it competes with internal links, sitemap entries, redirects and duplicate content itself. Clinic sites generate duplicate URLs constantly: filtered listings, tracking parameters on paid campaigns, trailing slash variants, and both http and https or both www and non-www still resolving.

The cheapest fix in this whole article is to pick one hostname and one URL shape, redirect everything else to it with a permanent redirect, and make every internal link point at the final destination rather than at a redirect. Redirect chains do not usually stop indexing, but they waste crawl capacity and they are a reliable source of confusion when you are trying to work out what is actually indexed.

Only then, ranking

Ranking is downstream of all of the above and it is the part with the least published detail. What can be said with confidence is what the systems must do: match a query to documents, assess how well each document answers it, and assemble a results page from several surfaces at once. Anyone offering you a numeric weight for a specific ranking factor is describing a survey of opinion, not a measurement of the system, and the difference matters.

SURFACE 08

Your own website

HIGH CONTROL
What controls it
  • Every byte a crawler receives, and the speed it arrives at
  • The entity claims: name, address, identifiers, sameAs, service list
  • Canonical URLs, hreflang if used, and the internal link graph
  • Whether the page answers the question it was built to answer
What does not
  • How the answer is displayed once it leaves your server
  • Whether a third party republishes an outdated version of your facts
How to test it
  • Crawl the whole site and compare the URL list against the sitemap
  • Validate every JSON-LD block against the Rich Results Test
  • Measure field data, not only lab scores, for Core Web Vitals

Working the sequence in practice

When a page underperforms, run the stages in order and stop at the first failure.

  1. Is there an internal link to the URL in the server-rendered HTML, and is the URL in the sitemap?
  2. Does robots.txt allow it, and does the server return 200 to a plain request?
  3. Is the substantive content present with JavaScript disabled?
  4. Does Search Console URL Inspection report it as indexed, and if not, what reason is given?
  5. Is a different URL being treated as canonical instead of this one?
  6. Does the page receive impressions for the queries you expected, or for none at all?

Impressions without clicks is a title and snippet problem. Clicks without enquiries is a page problem. No impressions at all is an indexing or relevance problem, and those are the ones this sequence is designed to catch before anyone spends a month rewriting copy that was never read.

How often any of this repeats

Recrawl frequency is not a setting and is not purchasable. It is inferred by the crawler from how often a URL changes and how important the site appears to be. Clinic sites are typically crawled slowly because they change slowly, which means a fix applied today may not be reflected for some time. Use URL Inspection to request indexing for genuinely important changes, treat it as a request rather than a lever, and resist the temptation to interpret a week of flat data as a failed fix.

No commercial links on this page

This article contains no affiliate links, no sponsored placements and no links to any agency, supplier, clinic or commercial brand. Nobody paid for it, nobody previewed it and no directory advertiser had sight of it. This publication does not rank or recommend agencies anywhere on the site.

Nothing here is medical or legal advice. Regulatory material summarises published guidance. Read the source before relying on it. Our full position is in the editorial standards.

Sources

Primary documentation and regulators only. We do not cite opinion surveys as though they were measurements of a system.

Frequently asked questions

Why is my clinic page indexed but not ranking for its treatment name?

Indexing means the page is stored and eligible. Ranking means it beat other documents for a specific query. If a page is indexed and receives no impressions for its target term, the usual causes are that the page does not actually answer that query, that a stronger page on your own site is being shown instead, or that the query is dominated by surfaces your page cannot appear in, such as a local pack.

Does adding a page to my sitemap get it indexed?

No. A sitemap makes a URL easier to discover. Google's documentation states plainly that including a URL does not guarantee it will be crawled or indexed. A sitemap fixes discovery problems, not quality or duplication problems.

Should I block anything in robots.txt on a clinic site?

Block genuine machine clutter such as internal search result URLs and endless filter combinations. Do not use robots.txt to hide pages you want kept out of search, because a blocked URL can still be indexed from external links. Use a noindex directive on a fetchable page for that.

How long should I wait before deciding a technical fix did not work?

Long enough for the URL to be recrawled, which on a small clinic site can be weeks rather than days. Confirm the fix is live by inspecting the URL, then judge the outcome on whether the crawled version now contains the change, not on whether rankings moved within a fortnight.

Does JavaScript hurt search performance?

JavaScript is not penalised. The risk is reliability. Content that only exists after rendering enters a second queue with no published timing, and crawlers that do not execute JavaScript will never see it at all. Put anything essential in the server response.

The surfaces move. We write when they do.

A short briefing on documented changes to the surfaces clinics are discovered on. One labelled sponsor slot per issue, no rankings, no invented numbers.