Mobile app version of vmapp.org
Login or Join
Martha676

: How can search engines find my RSS feed? I have a small blog. Now, I have created an rss.xml. I put that in the root of the site, on the server. Should I do anything to make search engines

@Martha676

Posted in: #Feeds #Rss #WebCrawlers

I have a small blog. Now, I have created an rss.xml. I put that in the root of the site, on the server. Should I do anything to make search engines like Google, Technorati, Yahoo! be able to find it?

(By the way I already have a sitemap.xml and added it to the Search Console)

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Martha676

3 Comments

Sorted by latest first Latest Oldest Best

 

@Heady270

You should include meta tags in the <head> section of your pages with feeds:

<link rel='alternate' type='application/rss+xml' title='RSS' href='http://example.com/rss.xml'>
<link rel='alternate' type='application/atom+xml' title='Atom 0.3' href='https://example.com/feed.atom'>


This allows the feeds to be found. Some browsers make an RSS icon visible to users when there are meta tags like that. Search engine bots know about those tags and can find feeds from them.

10% popularity Vote Up Vote Down


 

@Ogunnowo487

There is no reason to assume that consumers would look at /rss.xml when they are looking for a feed. Feeds don’t have a reserved filename/location.

You would typically link your feeds from relevant pages, by providing a/area/link elements with the alternate link type and a type value of application/rss+xml (or application/atom+xml in case of Atom feeds).

If you are using a link element, you might want to add a visible link in addition.
If you offer multiple feeds, note that the order matters.

(Which consumers are interested in your feeds is a different question, of course. If a consumer is interested, but not using the standardized HTML links, they would hopefully document an alternative way.)

10% popularity Vote Up Vote Down


 

@Radia820

Google recommends adding any rss feeds into webmaster for optimal crawling. An rss feed generally is a list of updates, and google can use this information to find new pages faster.

Here is a blog entry from google: webmasters.googleblog.com/2014/10/best-practices-for-xml-sitemaps-rssatom.html

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme