Archive for April, 2010

Google PR Update April 2010 – Google Page Rank

Yesterday I was just going through my website and suddenly saw it PR, its increased from 2 to 3, wow!! So it’s official that Google Update PR in 1st week of April 2010.

Generally, Google update PR 4 times a year. The program of Google PR update in 2010 was started from 31st March and will continue till 31st January 2011, which will include four updates in a row.

Whats Wrong with Google – Speel Mistake on Gmail

Today when I was about to login to my Gmail Account, I found something strange, there was many spell mistake on the Right Hand Side of the login area. When I saw it closely, found there is something wrong, few letter were missing throughout the page like: E, A and O
What wrong with google mail, there are many spelling mistake

This is funny!!

How to Redirect to WWW URLs 301

Learn how to redirect non www to wwwI received a mail from one of my client who wanted do redirect his domain (http://abc.com) to proper www URL (http://www.abc.com)

Earlier I had worked on those cases where we need to redirect old/obsolete pages to new url and it was simple.

Using a 301 redirect on the non-www version of the URL, which is  a permanent redirect , you can effectively joined all of your link popularity to a single URL.  And this techniques helps by many seo specialist and seo expert in order to increase website’s chances of obtaining and maintaining top rankings.

How To Enable The 301 Redirect on a Apache Server

Here is the solution how you can redirect non www to www URL using 301 permanent redirect code.

1. Make sure that your hosting provider has the Apache Rewrite Module turned on.

2. Download .htacess file on your system and rename existing file on the server.

3. Add following code mentioned on .htaccess file, mentioned below in Green color.

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

4. Upload this .htaccess file on the root folder.
That’s all, its done.