All posts tagged content
Simple SEO Tips for Bloggers
A lot of my clients know that blogging about their products and services is an important part of marketing in today’s social media crazed cyber world. Yet, they are not quite sure how it will help them with their search rankings. Regardless of what platform you use (Blogger, Drupal, WordPress, etc.) make sure you follow these best practices for blogging as they will assist with your SEO efforts.
* Identify a few targeted keywords that you want to be ranked and found by the search engines. These keywords will need to be the most common words used in your blog post and make sure they are in the title, URL, used in outbound links and are bolded.
* Change your permalink (i.e. permanent URL) structure to show the title of your blog post rather than the default URL (ex. “yourblog.com/?p=123″). This will make it easy for search engine spiders to find and crawl blog content.
* Write the title of your blog as a headline in order to grab the reader’s attention but also include targeted keywords because your blog will get archived and your titles can become searchable.
* Categorize your content so it allows the aggregation of content according to themes, thus making it easier for search engines to understand your content and giving you a better chance of ranking well on particular topics.
* Keep the content fresh in order to keep the readers and search engines coming back. From a search engine perspective, if your blog is updated frequently, it will attract the attention of spiders and causes more crawling and faster indexing, thus allowing your new content to become searchable more quickly.
* Create internal links by deep linking anchor text to product and/or information pages on interior pages of the site.
* Encourage interaction through comments. This will help create a more active community, which will translate in more content, traffic and eventually higher rankings.
Controlling Your Content Using a robots.txt File
Part of optimizing a site for organic search is deciding what pages you want the search engine robots to index. Why would I not want my web pages indexed by the search engines, you ask? Well, there are a lot of reasons why. The real answer depends on whether or not you want all your pages to be found on the search engines. Regardless, this can be easily controlled via a file called “robots.txt”.
Creating a robots.txt file is a relatively simple process and you don’t need to be a certified webmaster to create one either. Name the text file “robots.txt” using any text editor and place the robots.txt file in the root directory of your domain or sub-domain.
A few rules to remember about robots.txt files.
1. Adding a robots.txt file to your sub-directories will not work
2. You will need to add robots.txt file for each sub-domain that you manage
3. You will need a separate robots.txt files for your secure (https) and nonsecure (http) pages
4. Each robots.txt file must contain at least two lines to be effective:
* User-agent: the robot the following rule applies to
* Disallow: the URL you want to block (this entry should begin with a forward slash “/”)
Below are a few examples:
* Allow all robots to visit all files:
User-agent: *
Disallow:*
To block the entire site:
Disallow: /
* To block a directory and everything in it:
Disallow: /junk-directory/
* To block a page, list the page:
Disallow: /private_file.html
* To block files of a specific file type (ex..gif):
Disallow: /*.gif$
Clear as mud? Not to worry. Just having a robots.txt file is a step in the right direction.

