in xamp/htdocs liegt eine index.html mit folgendem Inhalt
Code:
<html>
<head>
<meta name="author" content="Kai Oswald Seidler, Kay Vogelgesang">
<meta http-equiv="refresh" content="0;url=/xampp/splash.php">
</head>
<body bgcolor=#ffffff>
</body>
</html>
Ebenfalls liegt dort eine index.php
PHP-Code:
<?
if(file_get_contents("lang.tmp")=="")
{
header("Location: splash.php");
exit();
}
?>
<html>
<head>
<link REL="icon" HREF="img/xampp.ico">
<meta name="author" content="Kai Oswald Seidler, Kay Vogelgesang">
<?include("lang/".file_get_contents("lang.tmp").".php"); ?>
<title><?=$TEXT['global-xampp']?> <?include('.version');?></title>
<frameset rows="68,*" marginwidth="0" marginheight="0" frameborder="0" border="0" borderwidth="0">
<frame name="head" src="head.php" scrolling=no>
<frameset cols="170,*" marginwidth="0" marginheight="0" frameborder="0" border="0" borderwidth="0">
<frame name="navi" src="navi.php" scrolling=auto>
<frame name="content" src="start.php" marginwidth=20>
</frameset>
</frameset>
</head>
<body bgcolor=#ffffff>
</body>
</html>
Die serverweite Konfiguration
Zitat:
|
DirectoryIndex index.html index.htm index.php index.php4 index.php3 index.cgi index.pl index.html.var index.phtml
|
sieht vor, dass die index.html
vor index.php geht
siehe auch:
http://httpd.apache.org/docs-2.0/mod...directoryindex