Apache configureren
Ga naar 'C:\Server\Apache\conf' en open 'httpd.conf'
1. Zoek naar '#LoadModule rewrite_module modules/mod_rewrite.so' en haal de # ervoor weg.
2. Voeg vervolgens het volgende aan het bestand toe:
#PHP5
LoadModule php5_module "C:/Server/PHP/php5apache2_2.dll"
PHPIniDir "C:/Server/PHP"
3. Zoek naar 'AddType application/x-gzip .gz .tgz' en voeg daar onder toe:
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
4. Zoek naar 'DirectoryIndex index.html' en vervang dat door 'DirectoryIndex index.php index.html'
5. Zoek naar '#Include conf/extra/httpd-vhosts.conf' en haal de # ervoor weg.
Ga nu naar C:\Server\Apache\conf\extra en open 'httpd-vhosts.conf'.
Vervang alles in dit bestand met onderstaande:
2
3
4
5
6
7
8
9
10
11
DocumentRoot "C:/Server/www/myserver.dev/public_html"
ServerName myserver.dev
ServerAlias www.myserver.dev
<directory "C:/Server/www/myserver.dev/public_html">
AllowOverride All
Options Indexes FollowSymLinks
Order allow,deny
Allow from all
</directory>
</virtualhost>
Start nu de Apache server opnieuw op, zodat alle bewerkingen van kracht worden.
Inhoudsopgave
- PHPMyAdmin 3 installeren
- MySQL5 installeren
- Apache en PHP testen
- PHP 5.3 installeren
- Apache installeren
- Extra's (optioneel)
- Apache configureren