seo

GoDaddy Traffic Blazer, is it worth using ?

I have never try Traffic Blazer, but I did searches on Google and found no one recommending the service.

Most blogger said it is not worth it, spending the service on other website promotion tool may be more rewarding.

  1. These are few reasons why I think it is not worth the money.
    One of the service offer by the Traffic Blazer is to submit your website to leading search engine(s), including Google and Yahoo.  Most of you may have already know that this process can DIY using this link and this link  . In fact, Google is actually able to index new website without webmaster manually adding url.
  2. Another service offer by it is “Search Engine Optimization” which it uses Yahoo! Sponsored search to display what keyword user uses to search. This service is in fact free after sign-up http://searchmarketing.yahoo.com

Have you tried it ? Please share your experience with us.

About author : This original article is property of Top 10 Web Hosting (http://www.top10webhosting.com). List of best web hosting services company offering PHP and MySQL. Compare & save ! on web hosting fee.

Note : Please include author information if you wish to republish this article.

Better SEO - remove meta description and keyword

If you have hard coded meta description and keywords on all your pages, it is better SEO practice to REMOVE it than keeping it.

    <meta name="description" content="Your description goes here" />
    <meta name="keywords" content="your,keywords,come,here" />

It’s better to define those lines for individual page since they are different for each page.

If you can’t maintain or have no idea what to be included in this two meta field, remove it for better SEO.

 Learn more about meta description from Google

About author : This original article is property of Top 10 Web Hosting (http://www.top10webhosting.com). List of best web hosting services company offering PHP and MySQL. Compare & save ! on web hosting fee.

Note : Please include author information if you wish to republish this article.

Force your visitors to visit WWW of your website.

Google can sometimes think “www and without www” are 2 duplicate websites and it could harm your seach engine result position (SERP)! It is better to force your visitor (including google bot) to view only 1 version of your website.

You can easily redirect all non-www traffic to www version of your domain, along with links to homepage or sub-folder. e.g. redirect yourdomain.com/aboutus.htm to www.yourdomain.com/aboutus.htm

Append code below to your .htaccess file, replace yourdomain.com with your own domain name.

RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourdomain\.com$ [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=301,L]

Code above works with any Apache webserver with RewriteEngine.

Anyone knows what is the solution for IIS ?

About author : This original article is property of Top 10 Web Hosting (http://www.top10webhosting.com). List of best web hosting services company offering PHP and MySQL. Compare & save ! on web hosting fee.

Note : Please include author information if you wish to republish this article.