“Crawled — currently not indexed” is the most misread status in Search Console. It is not a penalty and it carries no manual action. It means the fetch worked, the page was evaluated, and the engine decided not to store it.
Indexing is selective. Being crawled earns a page consideration, not a place.
The five causes, in rough order of frequency
1. It is a near-duplicate. The page is close enough to another page — yours or someone else’s — that the engine clustered them and kept one. Template-heavy pages with a paragraph of unique text are the usual case. So are paginated archives, tag pages and filtered variants.
2. The content is thin. Not short — thin. A 200-word page that answers a question completely is fine. A 900-word page that says nothing another page does not already say is not.
3. There is a noindex directive. Worth checking even when you are sure
there is not, because staging configurations get promoted to production more
often than anyone admits. Check both the meta tag and the X-Robots-Tag header.
4. Rendering produced an empty page. If the content is built by JavaScript
and the render timed out, or a required script was blocked in robots.txt, the
engine saw a shell. Fetch your page with JavaScript disabled and see what
remains.
5. It is a soft 404. The page returns 200 while its content says nothing
is here. Empty categories, exhausted filters and “no results” states all produce
this.
How to diagnose
Work from evidence rather than from theory:
- Run URL Inspection on the affected URL and read the rendered HTML, not the source. That is what the engine actually evaluated.
- Compare the unique text on the page against your other pages. If you can swap the topic word and land on another page of yours, you have a duplication problem.
- Check the HTTP response headers directly with
curl -I. Tools cache; the server does not lie. - Look at whether the page has internal links from anywhere that matters. A page nothing links to is being told, in the site’s own structure, that it is not important.
The uncomfortable answer
For a large share of these pages the correct fix is not a technical change. It is either to make the page substantially better than what already exists, or to accept that it should not be a separate page and merge it into one that deserves to be indexed. Sites usually improve faster by removing pages of this kind than by trying to rescue them individually.
To understand how indexing fits into inverted index construction, quality evaluation, and ranking, see the full breakdown in Search Engine Basics.
Sources
Tier 1 is a search engine's own documentation or a primary standards document. Tier 2 is a reputable secondary publication or a peer-reviewed paper.
- Page Indexing reportGoogle Search Console HelpTier 1 source: primary documentation or a standards document
- Google Search's core updates and your websiteGoogle Search CentralTier 1 source: primary documentation or a standards document
