Make a html page as a rss feed - HOW?

Padrino

Newbie
Joined
Dec 24, 2007
Messages
38
Reaction score
3
Can some one help me generating rss feeds?

For example,

hxxp://warriorforum.com/warrior-special-offers-forum/13014-how-get-1st-position-google-15-minutes-odd-method-unknown-most-search-engine-optimization-experts.html

This is page doesn't have an RSS feed but just a html forum post page.
Is that possible i can create a feed for this page so i can use that feed and send pings on daily basis?

I remember seeing a domain which does this for free.
But my bad, i lost that.

Someone please help with it.
 
Or

Code:
    <?xml version="1.0" encoding="utf-8"?>
    <rss version="2.0">
          <channel>
                      <item>
                            <title>Keywords</title>
                            <description>Info</description>
                            <link>http://www.domain.com or /keyword</link>
                     </item>
          </channel>
    </rss>

Save as .xml Any of the other websites above work good as well.
 
Yeah, and don't forget how powerful it can be to create a feed for YOUR site if you're just using regular html. Basically creating an rss feed page using the format Keedev just gave you above and saving it as .xml and uploading it to your server turns your site into a blog - giving you all the cool benefits of appearing as a blog. So you can ping your own site now that it has a feed, submit your feed to rss directories, get people to subscribe to your feed for site updates, and you'll appear in Google's blog search function. You can submit your site to the top blog index sites like blogcatalog and so forth which could get you on Google's first page for your main keyword. Lots of cool functions that creating a feed for your html sites can give you. It's nice if you dont' want to deal with the hassle of Wordpress for whatever reason and just build in html.

Dan
 
Guess I should had added the other one I use..

Code:
http://www.feedburner.com/fb/a/home

Good for ranking purposes if you don't take the .xml route to being with.
 
I've been using feedity.com also can use dapper.net

First I use ninja cloaker to setup pages for my keywords using the keywords as the page titles

then submit the cloaked page to feedity making the keyword the name of the feed - click "advanced refine" and then add <title> in the first box then </title> in the second box and this will name your feed the same as your keyword (page title)

then submit in the bulk loader at feedage.com


:cowboy:
 
Thank you keedev,

So, the link of the XML file is what i use to ping rt?

Or

Code:
    <?xml version="1.0" encoding="utf-8"?>
    <rss version="2.0">
          <channel>
                      <item>
                            <title>Keywords</title>
                            <description>Info</description>
                            <link>http://www.domain.com or /keyword</link>
                     </item>
          </channel>
    </rss>

Save as .xml Any of the other websites above work good as well.
 
Yes sir.. If you want to make life much more easier, you can try a feed editor..

Feed Editor - Labeled it as RSS Creator though..
Code:
http://www.mediafire.com/download.php?iuiz0jzg5wm

Virus Total
Code:
http://www.virustotal.com/analisis/58c429bc94144d10ab01005e17eab38f

Manual labor is such a pain..
 
Back
Top