It's good if you have homepage (your-domain.com) and blog(blog.your-domain.com).
But blogspot for me is homepage and blog )). So i redirect from your-domain.com to www.your-domain.com( CNAMEd ghs.google.com).
I use apache mod_rewrite and php.
.htaccess
RewriteEngine on
RewriteRule ^(.*)$ index.php?$1 [QSA,L]
index.php
<?php
error_reporting(0);
$uri = $_SERVER['QUERY_STRING'];
$uri = str_replace("index.php&", "", $uri );
$uri = str_replace("index.php", "", $uri );
header("Location: http://www.your-domain.com/{$uri}");
?>