L'unico modo è che tu usi un frame nella homepage, che contiene una seconda pagina (che diventerà la vera home). Il frame manterrà il dominio senza mostrare visivamente le varie pagine dopo il dominio.
E' l'unico modo. Basta una frame unico e invisibile.
Se cerchi in questo forum già se ne era parlato, e troverai pure il codice adatto.
Edit:
Eccone qui un'esempio:
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Home Page Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-
</head>
<frameset rows="0,*" frameborder="NO" border="0" framespacing="0">
<frame name="topFrame" scrolling="NO" noresize >
<frame src="tuahome.htm" name="mainFrame">
</frameset>
<noframes><body>
</body></noframes>
</html>