Posts Tagged ‘SEO’
SEO Checklist
Wednesday, June 24th, 2009While there is no doubt that good SEO consultants can help drive more traffic to your site, many small businesses cannot afford a good consultant. But you don’t need to despair if you can’t afford an expensive SEO consultant. If you are one of those DIY type business owners, this article will help you create a fairly decent search-engine optimized site. Even if you plan to use a web design/development agency and not do it yourself, you can demand that they create a site that complies with basic SEO tenets.
Here is how to go about placing yourself on the right side of search engines:
- Keyword analysis – This should be done before you start building your site. If you already have a site, you may have to tweak your content based on the results of this analysis. Know what keywords are used by your customers to find you. This may not be industry jargon words. A good tool to start with is Google’s Keyword Tool. You need to identify the keywords or phrases that have high volume but less competition. Once you identify the keywords for a page, mention it a few times on that page. Do not over-stuff your page with keywords. Search engines penalize keyword stuffing. Write naturally, but don’t forget to repeat your keywords a few times.
- Make sure every page on your site has a proper title tag, meta keywords and meta descriptions. Again, there is no need to repeat your keywords too many times, but your keyword should be there on the title tag, as it’s the most important tag from a search-engine perspective.
- Search engine friendly URLs (SEF). You need to have meaningfully named URLs that accurately describe the page content. Example: www.example.com/camera/dslr/nikon/D5000 is better than www.example.com?product_id=123. Carefully choose your URL names and structure. Now, how do you create search-engine friendly URLs? You can provide URL rewriting rules in .htaccess if you are using Apache; but it is cumbersome to manage. Many content-management systems like Drupal and WordPress support SEF, so if you are using these, you’ve got yourself covered. Most web app development frameworks like Symfony also support SEF.
- Provide textual description for all non-text elements like images, audio and video. For example, use alt tag with images. This will help the search engine better understand your multi-media content. This has the added benefit of making your site accessible.
- Search engine bots should be able to spider all your content even if the content resides in a database and are dynamically displayed. For example, your products may be sitting in your product catalog table in a database, but should create a static looking page for each product.
- Make effective use of heading tags like h1 and h2 to showcase the relative importance of text. Your important text should be text and not images.
- Use ordered lists for creating menus rather than using tables.
- The anchor text (hyperlink to another page) should contain keywords that describe the target page. Instead of writing “Click here for D5000 details”, it’s better if you write “check out the D5000 digital SLR camera“.
- Avoid duplicate content issues. If example.com, www.example.com and www.example.com/index.php all point to the same page, you should consider one of them as the primary URL. If you designate www.example.com as your primary or canonical URL, then the other URLs should be permanently redirected to the canonical URL. You can redirect by using the HTTP 301 code. Also consider storing the session id or affiliate parameter in a cookie and then redirect the URL with parameters to the canonical version.
- Never copy-and-paste content from other sites. You may be violating copyright laws and incurring duplicate content penalty. Likewise, if you are getting your content from a syndication service, check that the same content is not syndicated to other sites. Do a Google search on your content and if you find that your content has been copied by someone else, file a DMCA request with Google.
- What if you have multiple top-level domains? Like example.com and example.net? If you plan to have identical content on all these sites, do a permanent redirect to your primary domain.
- Multiple language versions of your site – I would say use a different sub-domain for each language. Example: fr.example.com for French and de.example.com for German. Using the same URL for different language versions is not a good idea.
- Block search engines from seeing admin panels, HTTPS content etc by using the robots exclusion protocol. Password protect those pages you don’t want the outside world to see.
- How do you know if Google has indexed all your pages? Search for site:example.com on Google. It will return the number of pages indexed.
- Externalize CSS and Javascript.
- Follow XHTML 1.0 strict standard.
- Reduce the amount of code in your page, and maintain a good content-to-code ratio.
- Speed is important. Your pages should load fast and should not timeout.
- Use microformats to describe your data.
- Last but not the least, build quality in-bound links.
Some of the above items need further explanation. However, there is a wealth of information available in blogs and online articles. So start digging and learn more on this interesting topic.