Zitat von
Matze:
Na so:
Code:
header('Location: index.php');
Das war's. Das kannte ich nicht.
Bekommt man das noch eleganter hin:
Code:
if (($path != '.') && (in_array("index.shtml", $files)))
{
header('Location: '.$path.'/index.shtml');
}
if (($path != '.') && (in_array("index.php", $files)))
{
header('Location: '.$path.'/index.php');
}