podes hacer tu archivo principal (index.htm o el que lea tu servidor cuando pones la direccion) simplemente con un iframe que ocupe el 100% de alto y de ancho y cargas el archivo que queres que sea el principal principal en el.
Este seria un ejemplo
Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html >
<head>
<title>Marcos</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1" >
<style type="text/css">
html, body {
width: 100%;
height: 100%;
margin: 0;
overflow:hidden;
}
iframe{
overflow-x:hidden;
overflow-y:auto;
border: 0;
height: 100%;
width: 100%
}
</style>
</head>
<body >
<iframe src="index-2.htm" frameborder="0"></iframe>
</body>
</html>