Several services I've seen use a simple frame structure within the index.html file to route to another domain name, for example:
index.html
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
<head>
<title>This site goes straight to Google...</title>
</head>
<frameset rows="*,0">
<frame name="Site" src="http://www.google.co.uk/" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0">
<frame name="Required for netscape" src="" marginwidth="0" marginheight="0" scrolling="none" frameborder="0">
</frameset>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -







