#!/bin/sh

NEW_URI="http://madrabbit.org/"

ID=`echo $REQUEST_URI | rev | cut -c 1-2 | rev`
if [ $ID = "12" ]; then
	NEW_URI="http://madrabbit.org/index.php?/archives/2-Just-a-second.html"
fi
if [ $ID = "13" ]; then
	NEW_URI="http://madrabbit.org/index.php?/archives/1-Yangtze-River-Bridge,-Nanjing,-China.html"
fi


echo Location: $NEW_URI
echo ""

exit

