I think that apache needs to have the "MultiViews" and "Indexes" option specified. If you're using virtual hosts:
- find the <VirtualHost> section for this site
- something like this should be inside there:
<Directory /path/to/document/root>
Options Indexes MultiViews
... (other directives) ...
</Directory>
If you're not using virtual hosts, find the <Directory> part of httpd.conf and add the "Options Indexes MultiViews" similarly to above.