Posting to your blog can be even more easier when you can post to your blog through your email account.
After logging into your the blog you want to change the
settings.
Click settings

Click on the email link under settings

Send an email to username.[secretwords]@blogger.com example username.1234@blogger.com
Select Publish emails immediately.
Thats it send an email to username.[secretwords]@blogger.com, it will be published to your blog.
You can even save the posts from mail to drafts so that you can publish them later.
If your site is moved to a new domain with the same file structure as before you can use this code to redirect to the new location. Works well for content management systems like wordpress even without .htaccess
<?php
$url=$_SERVER['REQUEST_URI'];
$url=substr($url, 0, -1);
$url_new=”http://newdomain.com$url/”;
header(“HTTP/1.1 301 Moved Permanently”);
header(“Location: $url_new”);
exit();
?>
Place the above code before outputting html (Even before <html>).
What silly thing does this do ?
It does silly thing of concatenating the file name part in old domain to new domain and redirect the visitors and search engines. Since its server side redirect its search engine friendly and you won’t lose search engine juice.