Tag Archives: SEO

Keyword search and website ranking tools

Any webmaster and marketer will know how important it is to keep track of their website ranking, keyword positioning, visits, ROI and so on…  There are a lot of interesting tools out there to help us. 

  • Google Analytics – Visitor tracking, keyword positioning, goal setting, demographics and more…
  • http://www.alexa.com – web traffic metrics, top sites lists, site demographics, hot urls, and more… 
  • Google Webmaster Tools – detailed reports about your pages’ visibility on Google
  • Yahoo Site Explorer – detailed reports about your pages’ visibility on Yahoo
  • Bling Webmaster Center – detailed reports about your pages’ visibility on Bling (former LiveSearch)
  • Keyword Spy – Research and track keywords in 3 search engines and 30+ countries.
  • KPMRSwebsite rank monitoring services on various search engines
    for multiple keywords.
  • XML-Sitemaps – Generate sitemaps online. Up to 500 urls Free.
  • WP Google XML Sitemaps – This plugin will create a Google sitemaps compliant XML-Sitemap of your WordPress blog.

These are just a few tools I use the most, please share yours.

Technorati Tags: , , , , , , , , , , , , ,

.htaccess 301 Redirect

.htaccess files (or “distributed configuration files”) provide a way to make configuration changes on a per-directory basis in an Apache HTTP Server. This file, containing one or more configuration directives, is placed in a particular document directory, and the directives apply to that directory, and all subdirectories thereof.

This 301  Redirect can be used anytime you want to redirect a URL. Here are some examples of its use:

  • Single page – Redirect 301 /old_page.html http://www.mysite.com/new_page.html
  • entire site -   Redirect 301 /  http://www.new_site.com/
  • change file extension (html to php in this case) -  RedirectMatch 301 (.*)\.html$ http://www.mysite.com$1.php

There are many other uses for Redirect 301 and mod_rewrite on Apache, if you are moving a site or redesigning a site with a new CMS make sure you redirect your old URLs to your new site. By failing to do so any user that clicks on a link to your old site (page) will hit a 404 ERROR page, this will affect your search rankings. 

The book “Professional SEO” has a good chapter in mod_rewrite and URL redirection, and is also great SEO manual

For a full tutorial on .htaccess visit the official Apache website.

Technorati Tags: , , , , , ,

SEO and WordPress

Optimise your WordPress blog or site for search with a couple of plugins and the web tools provided by Google, Yahoo and LiveSearch. The All in One SEO Pack plugin for WordPress will let you manipulate the specific SEO content of your blog like page title, meta data and description. Defaults can be set in the admin area of the plugin on your dashboard and specific settings can be tweaked as you create or edit a post.

The other important plugin is the Google XML Sitemap Generator, which creates a nice sitemap for you. After installing this plugin you need to create the sitemap.xml and sitemap.xml.gz files in the root folder of your blog and change their permissions CHMOD  666. The easiest is to right-click on the files in your FTP client and change permissions under properties, 666 stands for Read and Write permission for Owner / Group / Others.  For more information see the README.txt included with the plugin.  Read more »

Technorati Tags: , , , , , , ,

Search Engine Optimization SEO in PHP (Book)


The term SEO (Search Engine Optimization) has become a new phenomenon with marketeers.  As a programmer/developer it’s very hard to find a good book on such a broad subject but recently I found this great book. The authors go about explaining and guiding you through exercises that are relevant for both programmers and marketeers.  It contains detailed chapters on Website Content, Links, Webmaster tools and MOD_REWRITE. The code snipets found in this book can be used as a good reference guide to any SEO project.  This book is for PHP Programmers but they have also published a .NET version.

If  you develop with WordPress.org this releted post can also be very helpfull:  SEO and WordPress

Technorati Tags: , , , , ,