Archive

Archive for July 27th, 2008

car value = $0.00

July 27th, 2008 nikuman No comments

One year ago, we got a car as a present from one of my brother-in-law’s friends. The car is a Toyota Windom. Here are the details of this car.

型式(type certification): E-VCV10 3VZ
年式(model year): 1992(?)
車検(car inspection): H21年6月1日 (car inspection valid until: 2009/06/01)
距離(miles): 72,500km 19年5月22日 (72,500km as for 2008/05/22)
事故歴(accident history) 無し (none)

We are currently paying 31,500円 (292USD) monthly for the parking. It is pretty expensive. Since we haven’t used it more than a few times, we have decided to throw it or give it away. Even if we tried to sell it, we wouldn’t get any money for it.

Next week, a recycle company will take the car for recycling it or to send it oversears (its final destination might be somewhere in Africa!!). Unfortunatelly, we will receive no money for it!

I took some pics of the car, please see them below.

Categories: Uncategorized Tags:

301 redirect (non-www to www)

July 27th, 2008 nikuman No comments

Here is a way to implementing 301 redirect on your domains using htaccess.

Insert the following code into your .htaccess file.

RewriteEngine On
# redirect to preferred www domain
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\.example\.com
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

Just replace “example.com” for your own domain.

Categories: htaccess Tags: