The DirectoryIndex directive sets the URL to be returned when the index of a directory is requested by a visitor, that is, when a visitor specifies a / at the end of the directory name.
http://www.zann-marketing.com/
When there is a request for the index of a directory, the server usually returns the URL index.html. By using DirectoryIndex, one can specify a different URL to be returned when the index of a directory is requested, eg index_2.html.
Example:
DirectoryIndex index_2.html
In the above example, when the index of the directory is requested, the server will return the URL index_2.html, instead of index.html.
One can specify more than one URL for the DirectoryIndex and the server will return the first URL it finds. For example:
DirectoryIndex index.html home.html start.html
In the example above, the server will try to return index.html first, and if index.html isn’t found, then it will try to return home.html, and if that fails, it will try to return start.html.