From the category archives:

SEO Optimization

Now that Yahoo has begun showing BING search results, it is more important than ever to optimize for BING right?

The simple answer is no.

The actual question that should come to everyone’s mind is will this comprise my overall SEO efforts.

Search Engine Optimization is not magic; this topic is well documented. Many if not all of the SEO methods are shared across all the major search engines, with slight weighting differences amongst them. If you follow good SEO practice you will rank well on all SERPS.

There are however some interesting observations I have made. BING & Google both at first glance seem to weigh On Page SEO very similarly. However Off Page SEO seems to influence BING a little more. BING appears to give more trust to aged domains, along with target keywords anchor link positioning.

With that being said my personal opinion is that you should concentrate on good OVERALL SEO rather than worrying about a specific search engine. 

Remember content is king.

{ 0 comments }

What’s the easiest way to make an .htaccess file in Unix/Linux so that a directory is password protected? Suppose that your home directory is /home/dmistry and all your webstuff is in /home/dmistry/www/ . Follow these steps:

  1. Make an .htpasswd file. The htpasswd command in Unix does this. You should put the password file outside of your web directory. So a command like “htpasswd -bc /home/dmistry/.htpasswd review donotenter” will create a new file using a username of review and a password of donotenter into the file /home/dmistry/.htpasswd . If you were to run the command “cat /home/dmistry/.htpasswd” you might see a line like “review:M1OdtjdGiDn1Y”.
  2. Make an .htaccess file. In this case, the file would be located at /home/dmistry/www/.htaccess and it would look something like:

    AuthUserFile /home/dmistry/.htpasswd
    AuthName EnterPassword
    AuthType Basic
    <Limit GET POST>
    require valid-user
    </Limit>

{ Comments on this entry are closed }

Top 5 On Page SEO Tips

by Dinesh on December 15, 2009

Search Engine Optimization is clearly an art, a science, but this does not mean any webmaster can not perform basic SEO. There are several things a webmaster can do to achieve a decent level of visibility in the Search Engine Results Page. Many of these tasks are simple yet often overlooked. I will give you my Top 5 tips which I believe every Webmaster should perform when designing a site.

1. “Meta Tags” – Should be included on all pages, remember though these tags no longer carry the same value they used to in the early search days. Today’s search engines have evolved and now have robust algorithms which take many factors into consideration. The days of “keyword stuffing” will no longer yield in better SERP. Google has gone as far as openly stating that they in fact do not even use the Meta Keyword tag to weigh in on their decision. That being said I strongly believe that all sites should leverage the use of <meta tags> appropriately.

2. “Friendly URL’s”- Make sure all pages on your site have a friendly URL. http://www.domain.com/about-us.html try and avoid long URL’s with many parameter passed. Most search engines can handle URI’s with up to 2 parameters but after that you run the risk that your pages may not get indexed.

3. “Sitemaps” – Create a sitemaps.xml and sitemap.html publish them to the search engines via their submission links. I like to create both pages some people say you only need one.

4. “Robots.txt” - Create a robots.txt file tell the search engine where your sitemap.xml file is located. Most search engines will respect the robots.txt file. BE SURE that you validate the file before publishing, a bad entry could potentially block the crawler from crawling your site all together.

5. “Unique Content”- I personally think this is the biggest of them all, have unique content for your visitors, if you have a site that is just repeating another site what is the incentivefor people to come visit you. Creating easy to read unique content will go very far, think about it, if you have a site that is interesting more people are likley to link to your site, the more “Relevant & Reliable” back links you get the better chance you will rank higher in SERP. I will cover this in more detail on my Top 5 Off Page SEO Tips

{ Comments on this entry are closed }