What is "indexability"?
Indexability is a page's ability to get into the search index after a bot has crawled it.
In simpler terms:
Even if a page is accessible for crawling, that doesn't mean it will show up in search. Crawlability means the bot can reach it. Indexability means the bot decided: "this page is worth adding to the index".
What affects indexability:
- Meta tags
<meta name="robots" content="noindex">- blocks indexing.<meta name="robots" content="index">- allows it.
- HTTP headers
- Code 200: everything is fine;
- 301/302: a redirect, not indexed;
- 404/500: an error, also won't make it into the index.
- Canonical URLs (
rel="canonical")
- If a page is marked as a duplicate, only the original gets indexed.
- Duplicates and thin content
- If there are many identical or empty pages, the search engine may ignore some of them.
- Blocking in robots.txt
- If the bot couldn't read the page, there's nothing to index.
Conclusion:
Crawlability is about whether the bot reaches the page. Indexability is about whether the page makes it into search. You can have a great site, but without indexability it stays invisible in the results.
Short Answer
Interview readyPremium
A concise answer to help you respond confidently on this topic during an interview.