Archive for April, 2006

FREE domain name and FREE web hosting from Microsoft Office Live Beta

Wednesday, April 5th, 2006

Great news! You can register now a totally free domain name (yourname.com etc.) and get free web hosting (30MB, 10GB bandwidth) from Microsoft.
http://officelive.microsoft.com/

NOTE: only the live basic package will remain free after the beta-testing.

URL redirect using .htaccess on Apache powered website

Tuesday, April 4th, 2006

If you want to redirect an URL to a new address, it can be easily done using Apache .htaccess file.

Simply add the following code into a file names “.htaccess” in your directory.

RewriteEngine on
RewriteRule ^$ NEW_URL

A good reference is here.