Setting Directory Index and AllowOverride
Pada webserver mengunakan apache2 + php, perlu sedikit setingan pada http.conf supaya ketika mengakses suatu folder langsung bisa membaca index.php
#apachectl stop
#vi /usr/local/etc/apache2/httpd.conf
edit bagian :
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
menjadi
<IfModule dir_module>
DirectoryIndex index.php index.html
</IfModule>
dan
Directory “/usr/local/www/apache22/data”>
AllowOverride None
menjadi
....
AllowOverride All
....
#apachectl start