<!--- just paste this in, i'll explain later: --->
<tag.slashes>
<!---
There will be a variable called "get.s1". This tells you the first
part of the url after the "something.com". So, if you go to
something.com/abc, get.s1 will equal "abc".
If you go to something.com/mypage, get.s1 will equal "mypage".
--->
<if get.s1 EQ "" OR get.s1 EQ "home">
<!--- display the home page --->
<elseif get.s1 EQ "about">
<!--- display the about page --->
<elseif get.s1 EQ "animals">
<!--- display the animals page --->
<else>
<!--- display "not found" page --->
</if>