<? 
//$my_include = $DOCUMENT_ROOT."/index_".$SERVER_NAME.".html";
$my_include = $_SERVER['DOCUMENT_ROOT']."/index_".$_SERVER['SERVER_NAME'].".html";
#echo $my_include;
if ( file_exists( $my_include ) ) { 
   include $my_include;
} else {
?>
<html>
<head>
</head>
<body>
<h1>Invalid Server Name</h1>
<p>Invalid Server Name, please check your cms configuration and the index_?.php.</p>
</body>
</html>
<?
}; 
?> 
