Yep.....it's good for doing redirects when you have multiple domains.....just go:
<?php
$url = getenv(HTTP_HOST);
if($url == "www.whatever1.com")
{
header("location: whatever1.htm");
}
if($url == "www.whatever2.co.nz")
{
header("location: whatever2/whatever.htm");
}
else
{
header("location: home.htm");
}
?>
rgds,
scott d~