Apache HTTP Server DirectoryIndex und Rewrite geht nicht
Damit DirectoryIndex und auch mod_rewrite funktioniert muß in der http.conf AllowOverride All gesetzt werden.
Beispiel:
<Directory "c:/apache2/htdocs">
Options Indexes FollowSymLinks
# AllowOverride None # standart setting
AllowOverride All
Order allow,deny
Allow from all
</Directory>
Damit mod_rewrite funtioniert muß das module auch geladen werden:
LoadModule rewrite_module modules/mod_rewrite.s
Damit die .htaccess auch funktioniert:
# Various default settings
Include conf/extra/httpd-default.conf