seo
Archived Posts from this Category
Archived Posts from this Category
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.
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.0 comments Wednesday 28 Nov 2007 | BestHosting | seo, webtool, tips
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.1 comment Tuesday 20 Nov 2007 | BestHosting | seo
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.0 comments Monday 19 Nov 2007 | BestHosting | seo, apache, tutorial, domain name, tips