On your originating domain:
Put a PHP script as your default document, (index.php or whatever).
In this script include a header redirect:
header("Location:www.anotherdomain.com/cooldir/index.html");
The header() function needs to be called before any output is made.