Forum Moderators: phranque
Do I need to change something?
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
# The index.html.var file (a type-map) is used to deliver content-
# negotiated documents. The MultiViews Option can be used for the
# same purpose, but it is much slower.
#
DirectoryIndex
It should come up to a login page, but the login.cgi file displays the script instead of a login page.
The directive should list the names of your default directory index files, from most-preferred to least-preferred. The server will look for the index files in this order if no index file is specified in the browser request.
So, it might look like:
DirectoryIndex index.html index.htm wc_sript_name.php whatever.cgi
It sounds like a call to the script provider would be in order here.
Jim