PHP expert |
|
C:\Program Files\Apache group\Apache\conf\httpd.conf
C:\Program Files\Apache group\Apache\conf\httpd.conf
Open dit bestand met het windows kladblok (notepad.exe: ).
Je moet nu enkele dingen wijzigen en toevoegen. Zoek naar het volgende:
<IfModule mod_dir.c>
DirectoryIndex index.html
</IfModule>
<IfModule mod_dir.c> DirectoryIndex index.html </IfModule>
Vervang dit door het volgende:
<IfModule mod_dir.c>
DirectoryIndex index.html index.php index.cgi
</IfModule>
<IfModule mod_dir.c> DirectoryIndex index.html index.php index.cgi </IfModule>
Dit staat in een handleiding, van het configureren van Apache, nu kan ik het bovenste niet vinden, Hoe kan ik dan toch een webserver maken?
|