<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: amy5193111-svg</title>
    <description>The latest articles on DEV Community by amy5193111-svg (@amy5193111svg).</description>
    <link>https://dev.to/amy5193111svg</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4132575%2Fb6f4bdb5-179c-4db7-97dc-d14ffc756042.png</url>
      <title>DEV Community: amy5193111-svg</title>
      <link>https://dev.to/amy5193111svg</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/amy5193111svg"/>
    <language>en</language>
    <item>
      <title>Site Is Not Indexed? Debug It in Search Console, Not With Backlinks</title>
      <dc:creator>amy5193111-svg</dc:creator>
      <pubDate>Sat, 19 Sep 2026 07:55:36 +0000</pubDate>
      <link>https://dev.to/amy5193111svg/site-is-not-indexed-debug-it-in-search-console-not-with-backlinks-13h8</link>
      <guid>https://dev.to/amy5193111svg/site-is-not-indexed-debug-it-in-search-console-not-with-backlinks-13h8</guid>
      <description>&lt;h1&gt;
  
  
  Your New Site Is Not Indexed? Debug It in Search Console, Not With Backlinks
&lt;/h1&gt;

&lt;p&gt;I run a few small sites. Every time one of them goes live, someone eventually asks the same question: &lt;em&gt;"Google still hasn't indexed it - should I buy backlinks?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Usually, no. Most of the time the problem is visible in Google Search Console within ten minutes, and it is not about authority at all. This is the checklist I actually run, in this order.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Confirm the sitemap is a sitemap
&lt;/h2&gt;

&lt;p&gt;Submitting a sitemap in GSC feels like a finish line. It is a starting line.&lt;/p&gt;

&lt;p&gt;Check two things before you submit:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The URL returns real XML, not an HTML page. A very common failure: a reverse proxy or SPA fallback serves &lt;code&gt;200 OK&lt;/code&gt; with your homepage HTML at &lt;code&gt;/sitemap.xml&lt;/code&gt;. GSC records this as "couldn't fetch" and you get nothing.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;robots.txt&lt;/code&gt; lists the sitemap and doesn't block the paths inside it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Quick check from a terminal:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-sI&lt;/span&gt; https://example.com/sitemap.xml | &lt;span class="nb"&gt;head&lt;/span&gt; &lt;span class="nt"&gt;-5&lt;/span&gt;
curl &lt;span class="nt"&gt;-s&lt;/span&gt; https://example.com/sitemap.xml | &lt;span class="nb"&gt;head&lt;/span&gt; &lt;span class="nt"&gt;-3&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If the first line of the body is &lt;code&gt;&amp;lt;!doctype html&amp;gt;&lt;/code&gt;, you have your answer.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. "Discovered - currently not indexed" is an internal-linking problem
&lt;/h2&gt;

&lt;p&gt;This is the single most common status for new sites, and people misread it as a penalty. It means: &lt;em&gt;Google knows the URL exists, but has no reason to spend crawl budget on it.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Crawl priority is mostly internal PageRank. If your important pages are only reachable from the sitemap - or from an archive page buried five clicks deep - they are effectively orphaned.&lt;/p&gt;

&lt;p&gt;The fix is unglamorous and works:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Put your core pages on the homepage, in real &lt;code&gt;&amp;lt;a href&amp;gt;&lt;/code&gt; links&lt;/li&gt;
&lt;li&gt;Link between related articles with descriptive anchor text&lt;/li&gt;
&lt;li&gt;Make sure your homepage isn't linking to URLs that redirect elsewhere&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A quick audit: fetch your homepage and count how many links point at pages you actually want indexed.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-s&lt;/span&gt; https://example.com/ | &lt;span class="nb"&gt;grep&lt;/span&gt; &lt;span class="nt"&gt;-o&lt;/span&gt; &lt;span class="s1"&gt;'href="https://example.com/[^"]*"'&lt;/span&gt; | &lt;span class="nb"&gt;sort&lt;/span&gt; | &lt;span class="nb"&gt;uniq&lt;/span&gt; &lt;span class="nt"&gt;-c&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  3. "Crawled - currently not indexed" is usually a quality or duplication signal
&lt;/h2&gt;

&lt;p&gt;Open &lt;strong&gt;URL Inspection -&amp;gt; Test Live URL -&amp;gt; View Crawled Page&lt;/strong&gt; and look at what Googlebot actually received:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Garbled characters (encoding issues)&lt;/li&gt;
&lt;li&gt;A blank shell (content rendered client-side only)&lt;/li&gt;
&lt;li&gt;A 404 or a redirect chain&lt;/li&gt;
&lt;li&gt;A server so slow that the crawler gave up&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And the sneaky one: near-duplicate pages. If you have 50 articles that all say roughly the same thing, Google will index one and skip the rest. In that case consolidation is the answer - merge, then 301 the duplicates into the survivor.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Check for redirect chains and stale links
&lt;/h2&gt;

&lt;p&gt;Internal links pointing at redirected URLs burn crawl budget on every pass. Crawl your homepage and archives, and update any link whose target returns a 301.&lt;/p&gt;

&lt;p&gt;If you consolidated pages, also remove the retired URLs from your sitemap. Advertising URLs that only redirect is a signal you should not send.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. No impressions? Check whether the query space exists
&lt;/h2&gt;

&lt;p&gt;If pages are indexed but the Performance report is empty, you probably aren't ranking - or nobody searches the way you wrote. Look at Search Console -&amp;gt; Performance -&amp;gt; Queries. If you see impressions with a position around 10-20, that is a page worth improving rather than replacing. Add depth to what already half-ranks instead of publishing another article.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. What actually moves the needle when everything technical is clean
&lt;/h2&gt;

&lt;p&gt;Once the technical side is green and nothing is indexed, the remaining bottleneck is crawl demand - which comes from off-site signals and content uniqueness:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Get real links from pages Google already crawls&lt;/li&gt;
&lt;li&gt;Publish something that changes (live data, pricing, benchmarks)&lt;/li&gt;
&lt;li&gt;Cut the number of near-duplicate URLs on the site instead of adding more&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Publishing five more articles a week while twenty URLs sit unindexed makes the ratio worse, not better. That was the mistake I made the first time.&lt;/p&gt;

&lt;h2&gt;
  
  
  7. IndexNow is free - use it
&lt;/h2&gt;

&lt;p&gt;Google has no public instant-indexing API outside the (quota-limited) "Request Indexing" button, but Bing and Yandex support IndexNow: host a key file, POST your URLs, and you get crawled quickly. It won't help Google directly, but it's ten minutes of work.&lt;/p&gt;




&lt;p&gt;I wrote up the longer, ordered version of this checklist - including how to read the "Discovered" drilldown and what to do per status - here: &lt;a href="https://blog.yushou.xyz/2026/09/05/google-search-console-indexing-tips/" rel="noopener noreferrer"&gt;Google Search Console indexing troubleshooting&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you're debugging this while also wiring up an API integration, the config side of things lives at &lt;a href="https://api.yushou.xyz/guide/" rel="noopener noreferrer"&gt;api.yushou.xyz/guide&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>seo</category>
      <category>webdev</category>
      <category>website</category>
    </item>
  </channel>
</rss>
