Einzelnen Beitrag anzeigen

Benutzerbild von Luckie
Luckie

Registriert seit: 29. Mai 2002
37.621 Beiträge
 
Delphi 2006 Professional
 
#6

Re: [PHP] Directory listings mit PHP und Index Datei

  Alt 6. Dez 2009, 00:31
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');      
   }
Michael
Ein Teil meines Codes würde euch verunsichern.
  Mit Zitat antworten Zitat