SEO Blog

Video Blogging - November 17th, 2008

Video blog, also known as a vlog, is a web blog in which the medium is video rather than text. Just like other blogs the content is made regularly and most of the time it is a combination of text, images and other metadata, hence they provide the user with a richer web experience. Most video bloggers believe that it allows for more natural expression as compared to a normal blog.

These days video blogging is becoming popular with bloggers and podcasters because new technologies (digital or mobile phone cameras) make it easy to produce images and videos rather than writing loads of text.

It is quite easy to post a video. You can capture video by using a digital camera and then simply upload it on a blog post. However, you can incorporate titles, edited clips and other media effects to enhance your message. Video blogging exemplifies the old adage that a picture is worth a thousand words. The only disadvantages or downsides of video blogging are bandwidth requirements and resources or equipment required to capture, store and distribute video. Also, a significant amount of time and money is required to do the video blogging.

Nadeem Hussain
SEO Programmer

  • Digg
  • del.icio.us
  • Netvouz
  • DZone
  • ThisNext
  • Wists
  • Furl
  • Spurl
  • Technorati
  • YahooMyWeb
  • Ma.gnolia
  • Reddit
  • Simpy
  • StumbleUpon
Listen to this podcast Listen to this podcast

Pattern Matching with robots.txt - November 16th, 2008

The robots.txt file is a simple text file placed in the root directory of your site which offers specific instructions for how robots can access your site. The SEO implications of this are that you can restrict certain pages from being indexed helping to ensure that only relevant pages are made available to search engines and helping to retain PageRank on those pages. The robots.txt file uses three rules; User-agent (the robot the rules will apply to), Disallow (the URL that is to be blocked from the given robot) and Allow (the URL that the robot is allowed access too). Asides from blocking given URLS, pattern matching can be used to disallow access to any URL that, as you may of guessed, matches the pattern.

Matching a sequence of characters – This can be done through use of an asterisk (*) to block any directories or files that match the given text, for example the following rules will disallow the robots from any directory beginning with “admin”:

User-agent: Googlebot
Disallow: /admin*/

Blocking a URL containing a question mark – This is a useful technique when dealing with pages that are passing user submitted data through the URL. In the following example the rules disallow any page that contains a “?”:

User-agent: Googlebot
Disallow: /*?

Matching the end of a URL – This can be achieved through use of the “$” symbol. By placing this at the end of a URL you can specify that this rule applies to URLs that end here. Using the example of user submitted information being passed through the URL, the following rules can be used to ensure that any page containing information after the “?” to be disallowed, whilst pages with nothing after “?” to be allowed:

User-agent: Googlebot
Allow: /*?$
Disallow: /*?

Nick Price
SEO Programmer

  • Digg
  • del.icio.us
  • Netvouz
  • DZone
  • ThisNext
  • Wists
  • Furl
  • Spurl
  • Technorati
  • YahooMyWeb
  • Ma.gnolia
  • Reddit
  • Simpy
  • StumbleUpon
Listen to this podcast Listen to this podcast