Here’s a quick way to find the right web host for your eCommerce site

Web hosting services are as varied as your business needs. One way that you can save up on the operational expenses of your eCommerce site is to find the web host that matches your business specifications. Before you decide on a web hosting services, shop around first and get the web host that best suits your needs.

Web Hosting Pal is an easy-to-use web host comparison tool that can help you get the most suitable Web Hosting you need. No matter what your budget is, Web Hosting Pal’s extensive catalog of web hosting services makes sure that you can make an informed choice on your new web host.

At Web Host Pal, you can evaluate web hosting services under $5 per month, and find out which of these web hosts are offering PHP and MySQL, Unix, Windows, and FrontPage.

Web Hosting Pal also has a section for business and eCommerce web hosts. If your website will be designed to sell products and receive orders, these web hosts will be up to specs for your business needs. For businesses with multiple websites, Web Hosting Pal will also help you consolidate your sites into one web host account. It is a money-saving system that can help you optimize your eCommerce sites.

Get the Web Hosting Pal advantage. Find out how Web Hosting Pal can help your online business.

Popularity: 1% [?]

Remove DMOZ and Yahoo Directory Titles and Descriptions

This is already old news for the seasoned SEO professional but still new to many budding SEO noobs out there. The main reason I posted this was because of a thread I found on SEO Philippines’ Forum, where someone was asking why the title on the Google search results were still showing the old titles. And in fact, they were actually being pulled from DMOZ, (www.dmoz.org) also known as ODP or Open Directory Project. (Note: The page on this link is not the Open Directory Project)

Since Google, Yahoo and other search engines consider links from DMOZ and Yahoo Directory as highly trusted links and put some weight on them, sometimes Google, Yahoo or MSN (Live Search) may actually pull titles and descriptions from DMOZ or Yahoo Directory if Continue reading

Popularity: 1% [?]

Back to the basics: The robots.txt file

What is a robots.txt file?

Robots.txt is a text file that resides on the root URL of your website. In this file has all the rules of pages you wish to exclude in the search engine results. This file has specific instructions on what files or folders you wish to disallow robots (also called bots, crawlers, spiders) from going over your selected pages and getting them indexed.

Making your own robots.txt file is not difficult. You can make your own by simply placing all pages you wish to disallow search engine robots to index in a text file named robots.txt with content similar to the format below:

User-Agent: *
Disallow: /path/

User-Agent: *
Disallow: /path/file.html

The asterisk (*) is a wildcard meaning you are telling all types of robots to follow the disallow rule below it. If you wish to exclude only a specific bot, you need to know the name. For instance to disallow only Google for crawling a certain page, you can do something like:

User-Agent: Googlebot
Disallow: /path/file.html

If you decide to exclude a folder name without a file name, this will exclude all files within that folder. For example:

User-Agent: *
Disallow: /path/

If you have the pages found on /path/file1.html and /path/file2.html, these will both be excluded in the search engine results.

A site without a robots.txt does not mean your site will not be indexed, but when search engines crawl your robots.txt and this forwards to an error 404 page, might cause some problems. And looking at it the other way, a site with robots.txt does not also help increase your ranking directly. It may be of help if you are not allowing search engines to crawl pages that are giving your site some duplicate content.

Now why should you disallow a page? Isn’t it nice to have search engines crawl all your pages? Well sometimes you may have your own reason why to exclude a page or pages in the search results. Some reasons can also be to avoid duplicate content. It’s really up to you what your reasons are. :)

Popularity: 1% [?]