How to get your web site content syndicated
By Kalena Jordan kalena@high-search-engine-ranking.com
and
Dan Thies (dan@cannedhelp.com)
3 December 2002
[Kalena] Following our successful experiment of setting
up a news feed for my site, search engine marketer Dan Thies and I have
joined forces to write this article to show other webmasters how they
can do the same for their own sites.
But before we get ahead of ourselves, let me set the scene...
Being the web-mistress of a resource site about search engine marketing,
I'm always on the lookout for new ways to promote my site. Like many other
web site owners, I don't have an enormous marketing budget and must rely
on my own resources to spread the word about my content.
As you would expect, one effective method of promotion that I utilize
is search engine optimization. This ensures the search engines regularly
visit my site and update my pages in their indexes. Another is the circulation
of a regular newsletter. But the real secret to attracting more traffic
is to add bucket loads of fresh content. Providing you promote this new
content effectively, it can act like a magnet on your site, pulling in
new visitors every single day and giving you the opportunity to turn those
visitors into loyal followers or, (if you sell products and services),
paying customers.
Fresh content improves the "stickiness" of your site too -
giving visitors a reason to return to your site on a regular basis. And
of course the search engines reward popular sites with more link popularity
and a higher search ranking. Adding new site content is one thing, but
just how do you spread the word about this new content and place it in
front of potential visitors?
Well take my site for example. I had recently added a web
log (known on the Internet as a "blog") about the search
engine industry, which I updated daily with news and articles. I had seen
similar sites having their content syndicated on industry news portals
such as Moreover,
ClickZ, ZDNet
etc and I wanted a piece of the action. Problem was I had no idea how
to go about this.
A fellow moderator in the ihelpyou
search engine forums (Dan) told me I required an "RSS Feed"
- a special file containing the content I wanted syndicated - so that
the news sites could grab it from my site instantly. Dan offered to give
me a hand to set up the file and so began our quest! I'll let Dan take
over from here and explain exactly how we did it and how you can set up
your own news feed. Here's Dan...
[Dan] Thanks Kalena. An RSS news feed provides information
about your site's content that enables other sites to effectively link
to it. There are actually a few different flavors of RSS – for purposes
of this article, we'll work with RSS version 0.91, which is the most commonly
used on the web today. We'll also focus on the very basic elements of
a news feed, and leave the advanced stuff for another time.
The RSS file itself is a fairly simple text file. Although it uses an
XML language format, the code will be pretty familiar to anyone who has
worked with HTML to edit web pages.
Let's look at a simplified version of the RSS file we created for Kalena’s
site:
<?xml version="1.0" encoding="ISO-8859-1"
?>
<rss version="0.91">
<channel>
<title>Search Engine News Blog</title>
<link>http://www.high-search-engine-ranking.com/search_engine_news
_blog.htm</link>
<description>search engine news web log, tracking daily
developments
in the search engine optimization industry</description>
<language>en-us</language>
<copyright>Copyright 2002.</copyright>
<webMaster>info@high-search-engine-ranking.com</webMaster>
<image>
<title>Search Engine News Blog</title>
<url>http://www.high-search-engine-ranking.com/senblogotiny.jpg</url>
<link>http://www.high-search-engine-ranking.com/search_engine_news
_blog.htm</link>
<width>90</width>
<height>52</height>
<description>Search Engine News Blog</description>
</image>
<item>
<title>Google Defines Ethical SEO</title>
<link>http://www.high-search-engine-ranking.com/GoogleDefinesEthical
SEO.htm</link>
</item>
<item>
<title>Yahoo Offends Gay Community in UK</title>
<link>http://www.high-search-engine-ranking.com/YahooOffendsGayCommunity
InUK.htm</link>
</item>
</channel>
</rss>
An RSS feed consists of one or more "channels." A single channel
will be sufficient for the majority of sites. Each channel, in turn, contains
information about one or more news articles.
A channel consists of the following required information:
· Title: the name of the channel (in the above example, Kalena’s
channel title is called "Search Engine News Blog")
· Link: the URL for the channel's main web page (the page on Kalena’s
site where the news items are displayed)
· Description: a description of the channel's purpose and content
The first two lines in our RSS feed example define this as an RSS feed.
The <channel> tag comes next and contains the required information
about this news channel (as listed above). Optional information follows
these items and includes language, copyright info, contact email addresses,
and an image (logo) that can be displayed with the channel's headlines.
The above example contains all these options, but you can leave these
out of your own feed if you prefer.
In addition to the required information, the channel must contain at
least one news item.
>> News items consist of the following:
· Title: this is the headline that will be displayed for the news
item
· Link: the URL where the full news item can be found (for best
results, each item should be on its own unique web page)
· Description: a description of the news item – sometimes
referred to as a "teaser."
The first two elements are the minimum expected by nearly all sites that
carry headlines. The description field is optional, as some syndicators
will ignore this field altogether, posting only the item headline. Because
of this, Kalena’s RSS file does not include item descriptions.
Below that, you’ll see two news items listed, “Google
Defines Ethical SEO” and “Yahoo Offends Gay Community
in UK”. Additional news items would follow the same format
and be listed directly below within <item> </item> tags. Finally,
the last two lines of the feed are closing tags – XML, like HTML,
requires opening and closing tags.
To preview what Kalena’s RSS feed looks like when syndicated, click
here:
http://www.wc.cc.va.us/services/news/preview.asp?
c=http%3A%2F%2Fwww.high-search-engine-ranking.com%2Fsenb.rss
You can create your own simple RSS file with just about any text editor
– I set up the sample above with Notepad. Once you’ve created
the text file, do the following:
- Save the file with .rss as the extension (example: mynews.rss) and
upload it to the main folder of your website.
- Validate your RSS feed by running it through the RSS
Validator to make sure it's set up correctly.
- Display the “valid RSS” logo on your site (available from
the link above) and provide a visible link to your feed (link: http://www.mydomain.com/mynews.rss)
from your site page/s. You could say something like Kalena uses on her
site: Webmasters! Click below to feature our Search Engine
News Blog headlines on your site. RSS
Feed For This Page.
- (optional) Create a javascript version of the RSS feed to enable other
webmasters to syndicate your content on their sites (the Wytheville
Community College News Center provides this service for free).
- Submit your feed to content aggregators. Some sources are provided
below.
- Update your feed regularly by adding new items to the .rss file and
ensuring each item has it’s own link on your web site.
- To keep your feed fresh, try to keep your channel items to a maximum
of five, deleting older items from your feed as you update it. The dates
next to your news items will adjust depending on when content aggregators
pick them up.
So, that's the basics of RSS! We have only been able to scratch the
surface in this short lesson, but it's enough to get you started. A complete
description of the RSS 0.91 format can be found at http://backend.userland.com/rss,
and more resources on creating your own newsfeed can be found here:
Set
Up Your Own Newsfeed
RSS:
Lo-Fi Content Syndication
Blogify
Your Page
Content Syndication
With RSS (Blog about RSS)
[Kalena] Thanks Dan. Ok, so your feed is created, you've
verified it works and you've set up the code and Javascript on your site
so that webmasters and content syndicators can grab it easily. But you're
not finished yet! Now you need to spread the word about your feed. Here
are a few content aggregators where you can register your newsfeed:
Syndic8
Moreover
Aggregator
Userland
News is Free
News Knowledge
You only need to do this once and then syndicators tracking your feed
automatically pick up your new feed items as you update them. You can
also download one of these RSS readers to examine your own newsfeed:
http://www.feedreader.com/
http://www.headlineviewer.com/
So there you go. Not as difficult as you thought huh? With a little effort,
your site can be rubbing shoulders with the big players on major news
portals. Enjoy the traffic!
Copyright © 2002 by Dan Thies and Kalena Jordan.
All rights reserved under U.S. and international law.
About the author
Article by Kalena Jordan, one of the first search engine optimization
experts in Australia and New Zealand, who is well known and respected
in the industry, particularly in the U.S. As well as running her own
SEO business Web
Rank, Kalena manages Search
Engine College, an online training institution offering instructor-led
short courses and downloadable self-study courses in Search Engine
Optimization and Search Engine Marketing subjects. |
» Change
your mind about an eBay bid?
We have all made choices in life that two seconds later
we know we should take back. Especially when there is money involved
this can become a problem.
» A
simple way to create 7 effective autoresponder messages
Email is the Net's most powerful marketing tool. And autoresponders
are the best idea yet for marketing with email.
» 7
ways to drive laser-targeted traffic to your website
Getting people who matter to see one’s website
is a difficult undertaking if he tries to consider the fact that
there are rivals everywhere waiting to pin him down.
» Website
valuation: Why standard website pricing methods will emerge
The market of buying and selling developed websites is
becoming more and more liquid each day.
» One
way links are better than reciprocal links
You probably know by now that where your website ranks in
the search engine rankings dramatically affects how many visitors you
have to your site. Did you also know that you can change where your
site is ranked by being proactive and getting as many one way links
to your site as possible?
» How
to make visitors stay at your website
The very first thing which you should provide the visitors
with is some free interesting reading material.
» How
to make your visitors click your ads
Here is a simple solution; Convert your banner advertisement
to look like a text advertisement!
» Offline
advertising should be a part of your online strategy
Day by day, online business has become more & more
complicated and competitive.
» How
to sell traffic
Selling the traffic arriving at your site is a good method
to increase profits from your portal.
» Make
money from online auctions
Online auctions have the best benefit of a vast platform.
Your product is viewed by loads of people & hence there is
more possibility of finding a suitable bidder.
» Groupware
explained in easy terms
Groupware is a term used frequently to describe collaborative
software. Groupware is application software that integrates work
on a single project by several concurrent users at separated random
workstations.
» Timely
back up can save you from disasters
Few things which people often back up are e-mail addresses,
bank records, photographs, personal records, software’s,
music etc.
» Why
should one go for autoresponders
Autoresponders are programs which get automatically
executed in particular situations.
» Become
your own boss - Start your own online business today
A survey conducted by SBA states that two third of new
business survives at least two year and about forty four percent
survives at least four year.
» Express
your thoughts - Creating your own blog!
What exactly is a blog? Technically speaking it is a
journal or a newsletter which is regularly updated and can be used
by any one.
» Pop-up
ads - To be or not to be?
According to a study conducted by the Bunnyfoot University, “The
Efficacy of Pop-ups and the Resulting Effect on Brands” Internet
users feel harangues and harassed by pop-up ads.
» Why
content is king on the Internet
The advantages that Internet holds over the rest of
the other communication mediums should not wasted because of
the inability to find a comprehensive plan that will bind all
these faculties together.
» 10
niche marketing tips
In our increasingly driven consumer economies, the average
customer is bombarded by choices. With increased saturation of the
market, companies look towards niche marketing to search new, ever-evolving
and sophisticated consumers.
» Using
free traffic exchange
These days internet has emerged as both, a market and
hub for marketing. Unlike the ‘brick and mortar’ world
where large manufacturers manage to squeeze out the market bases
of smaller companies, the internet provides haven like the free
traffic exchange.
» Ten
ways to drive traffic to your website
Developing a web site and then letting it grow is
like planting a tree and then nurturing it.
» Marketing
through keyword articles
One of the most effective tools of Internet marketing
is the use of keyword articles.
» Want
to make money online? Market a service to businesses
Don walked across the street from his house to mine to
announce he had finally retired. "But I'm not ready for the
golf course," he said. "I want to make a living on the
Internet. What can I sell?"
» Web
site design mistakes - Database parameters in URLs
Creating a web site takes thought, planning and execution.
Unfortunately, many designs are dead in the water before they are
even published as far as search engine optimization is concerned.
Whatever you do, avoid these critical mistakes.
» Alexa
Toolbar - The ultimate internet tool
There are numerous tools available on the Internet to
assist online businesses. A valuable tool that you should use is
the Alexa Toolbar. Even better, this tool is free.
» Web
site design mistakes
Some wise human once said "Learn from the mistakes
of others. There isn't nearly enough time to make them all yourself."
Hence this article. Here are five of the most annoying and common
web design mistakes.
» Abandonment
- Why visitors don't turn into customers
Every good Internet business understands the value of
conversions versus hits received. Far too often, businesses become
fixated on the hits they are receiving instead of monitoring their
hit to sale conversion rate.
» Creative
search engine optimization - A case study
Search engine optimization this and search engine optimization
that. You read and hear about it all day, but what about your site?
|
|
Tools & services to enhance your online
business |
|
» Site
Build It!
Over 100,000 small businesses of all kinds outperform
larger, well-financed competitors. Read about this all-in-one site-building-hosting-marketing
system of tools that delivers results.
» Secrets
To Their Success
Take a private tour of two "Mom & Pop"
web sites every month that earn $100,000+ a year... and discover
the exact step-by-step strategies they have personally used to generate
these massive profits. |
|
|