views:

345

answers:

8
A: 

The definition of SEO friendly web directory

What does the SEO friendly directory mean? "SEO Friendly" means: the pages of a directory where listed links appear are spiderable. These pages can be scanned by the search engine robots and that is why the links on them can be cached and assigned a page rank.

For more information on this topic click me!

This is a topic worth reading about if you are a web developer!

Yoda
+2  A: 

At this point, you would have as much luck defining "Web 2.0" with any degree of precision. It's a buzzword, so people put it up. When I've seen it, it means anything from "works with Google ads" to "allows you to categorize your products" to "shortens URLs".

I think the original meaning (as others have pointed out) is that your site could be easily traversed and mapped by a webcrawler.

Will
+10  A: 

A website is called 'search engine optimized' if the developer focussed this design criteria and the website is easy to parse for the GoogleBot and similar crawlers which are indexing the site. Here are some (nobody knows all of them) hints how to optimize your webpage:

  • meaningful URLs
  • meaningful title tags (different on every single page)
  • valid and clean (X)HTML (=> nicer to parse by the robots)
  • real content which uses the accentuated often but in a natural way
  • no flash, frames and no relevant text which is only in images

There are hundreds of more methods. You can look for them using Google, there are also some papers on this published by Google itself. Also you could use the Google Webmaster Center inclunding some useful tools.

rami
+1  A: 

SEO means Search Engine Optimization.

SEO site is site that has it's content optimized for search engine visibility for relevant terms (keywords). SEO is a buzzword and since each search engine has different algorithms used to crawl and categorize your site, there is no universal way that defines how SEO should be applied.

Basically, you want to keep your:

  • content accessible without using JavaScript
  • HTML valid (conforming to HTML standards)
  • structure content so it properly distributes keywords in text
  • make all pages accessible through inbound links on your site and through sitemaps
  • use clean and expressive URL's

Bottom line, content is still the king and has content accessibility as a queen, all the technical stuff should be done as suggested by related standards anyway.

rebus
+3  A: 

Expanding on rami's answer a little, its not just clean and valid [X]HTML that counts, its also how the document itself is structured.

Here's a fine example:

<p>
   <b>My main idea, which search engines will treat like any other content</b>
   Wow, all of my poor text is completely out of context :(
</p>

Verses

<h1>My main idea, which search engines will treat as a main idea!</h1>
<p>Now search engines understand my supporting text even better!</p>
<h2>Use tags as they were intended</h2>
<p>And all of your text is indexed much better</p>

I see that mistake made more than most others. Services like w3c should be able to extract an outline of your document, based solely on your tags and it should directly line up with what you are trying to present.

Wordpress does well not just because of SE friendly URL's, meta tags, etc .. it does well because it organizes the content of each page correctly with not just valid, but semantically correct XHTML.

Tim Post
A: 

SEO Friendly sites have great site architecture (both information and function), crawlable by search engine spiders, usable/accessible by people, it's content/offerings should be easily linked to by other sites, it should not be 100% flash, fast loading, and it should be marketed like any other piece of traditional collateral (that's where your long term return comes in on SEO).

hsatterwhite
A: 

SEO is yet another buzzword that all too often is used to entice gullible and clueless customers to give unscrupulous web developers additional funds in the hope that their web site will somehow make a bigger splash.

Problem is, too much focus on SEO in the wrong ways can actually have a detrimental effect on a web site. Not only does one risk the search engines detecting any attempts to "fudge the numbers" and then lowering one's rank or taking other undesirable steps; there is also the possibility that one's site might get so optimized for robots that it actually becomes less useful to one's actual audience - PEOPLE.

My advice - focus on your REAL audience and on getting your actual message across to them rather than on SEO. Of course, this doesn't mean you shouldn't do what you can to assist the crawlers in doing their job. In many if not most cases, making your site more easily accessible to your audience will also make it more easily accessible to crawlers as well. It also encourages more external sites to link to your site, which probably does more to enhance your search engine ranking than anything else. Put keywords in your meta tags, use friendly URLs and ALT tags, set up your robots.txt file to tell the search engines what they're better off not indexing, but don't go overboard on SEO.

Brian Showalter
+2  A: 

it mainly refers to on-page SEO

this basically covers the things a programmer can do in code to improve a websites ranking on say google

this is a basic list of seo checkpoints that would go a long way towards making a website seo-friendly:

alt text

source article: Bare Minimum On-Page SEO

--LM

louism