Updated: 2026-08-30
RSS Feed Autodiscovery: How to Make Sure Browsers, Readers, and Tools Can Find Your Feed

Autodiscovery is the reason you can paste a website’s homepage URL into a podcast app or feed reader and have it find the actual feed on its own, without you ever locating or pasting the real feed link. It’s a single line in a page’s HTML — and when it’s missing or broken, tools quietly fall back to guessing, or fail to find your feed at all.

The Actual HTML Tag That Makes It Work

Autodiscovery runs on one <link> tag placed in a page’s <head>:

<link rel="alternate" type="application/rss+xml" title="Site Name" href="https://example.com/feed/">

Any tool that supports autodiscovery — browsers, feed readers, podcast apps, automation platforms — reads a page’s HTML head, looks for this tag, and follows the href straight to the feed. No manual searching, no guessing common paths like /feed or /rss.xml.

How to Check Whether Your Site Has It

View your homepage’s page source (or use a “view page source” browser extension) and search for rel="alternate". If it’s there with a type of application/rss+xml or application/atom+xml and a valid href, autodiscovery is working. Most major CMS platforms — WordPress, Ghost, Squarespace — add this tag automatically on every page without any configuration, so its absence is usually a sign of a heavily customized theme or a static site built by hand.

Why It Silently Breaks

Autodiscovery tends to fail quietly rather than loudly. A theme rebuild can drop the tag from the head template entirely. A migration to a new domain or subdirectory can leave the href pointing at the old, now-dead feed URL. A page builder plugin can strip head tags it doesn’t recognize as “content.” None of these show up as a visible error on the site itself — the page looks completely normal, only the invisible discovery path is broken, which means new subscribers relying on autodiscovery quietly can’t find the feed anymore.

Multiple Feeds on One Site

Larger sites often generate several feeds — one for all posts, separate ones per category, and sometimes one for comments. Autodiscovery supports declaring more than one <link> tag, each with its own title so tools can show a human-readable choice. The practical guidance is to make sure the main, all-posts feed is always declared on every page (not just the homepage), since that’s the one automation tools and readers default to when only one is expected.

Frequently Asked Questions

Does autodiscovery affect SEO?

Not directly as a ranking factor, but it affects how reliably crawlers, aggregators, and automation tools that respect it can find and use your content, which matters for distribution rather than rankings.

Can I have autodiscovery without an RSS icon showing in the browser?

Yes — the visible RSS icon some older browsers showed was just a UI convenience for finding the same tag. Its absence in modern browsers doesn’t mean autodiscovery is missing; check the actual HTML tag, not for a browser icon.

What if I don’t know my feed’s exact URL?

Check the autodiscovery tag in your homepage’s source first; if it’s present and correct, that href value is your feed URL, and it’s also the one to hand to any automation or podcast tool directly.

The Bottom Line

Autodiscovery is a one-line HTML tag doing an outsized job: letting every feed-aware tool find your content without manual setup. It’s worth a direct check after any theme change, migration, or redesign, since it fails silently and the only sign is subscribers or automation tools quietly no longer finding new posts.

Menu
x
PostRSS - RSS Feed Automation Platform & Auto-Posting Tool
Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.

You can adjust all of your cookie settings by navigating the tabs on the left hand side.

Privacy  https://postrss.com/privacy/

Terms of Service https://postrss.com/terms-of-service/