PDA

View Full Version : How to create RSS for website and how it is useful in SEO?



nrvaghela
07-03-2013, 08:04 AM
Please share steps to create RSS for website and also tell me how it is useful in SEO?

blessy_smith
07-05-2013, 03:16 AM
1. Open notepad

2. Copy paste the following code and then customize the code in bold to meet your requirement:

<?xml version=”1.0″ encoding=”UTF-8″ ?>
<rss version=”2.0″ xmlns:atom=”http://www.w3.org/2005/Atom”>
<channel>
<atom:link href=”http://www.mywebsite.com/my-rss.xml” rel=”self” type=”application/rss+xml” />

<title>Enter Name of your Website Here</title>
<description>Enter your website description</description>
<link>http://www.mywebsite.com/</link>
<lastBuildDate>Enter the date and time when the RSS feed was last built or updated</lastBuildDate>
<pubDate>Enter the date and time when the feed should be published</pubDate>

<category>Enter the categories which best describe your website</category>
<language>en-us</language>

<item>
<title>Enter heading of the item here</title>
<description>Describe your item here</description>
<link>Enter the link back to the full contents of the item here</link>
<category>Enter the categories which best describe your item</category>
<pubDate>Enter the date and time when the item should be published</pubDate>
<guid>Enter the link back to the full contents of the item here</guid>
</item>

<item>
<title>Enter heading of the item here</title>
<description>Describe your item here</description>
<link>Enter the link back to the full contents of the item here</link>
<category>Enter the categories which best describe your item</category>
<pubDate>Enter the date and time when the item should be published</pubDate>
<guid>Enter the link back to the full contents of the item here</guid>
</item>

</channel>

</rss>

3. Save the file as my-rss.xml

4. Upload the file on your web server.

5. Validate your RSS feed using feedvalidator.org

Read more: http://www.seotakeaways.com/how-to-create-rss-feeds-documents/#ixzz2Y9YWFKaj

madtteam28
07-05-2013, 05:05 AM
Blessy, Thanks for the very nice information. It will hep me lot.

seovikrama2z
07-05-2013, 05:39 AM
Its a very nice information shared by Blessy smith, i liked to do it.