Commit 9dfbe739 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Per Martin, Mark's and my discussion, index.html will _still_ override
  the typemap, and enabling multiviews will undo the optimization.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90398 13f79535-47bb-0310-9956-ffa450edef68
parent 0fa51bbe
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -313,9 +313,9 @@ DocumentRoot "@@ServerRoot@@/htdocs"
# Note that directly accessing an index.html.var typemap is much faster
# than using MultiViews negotation on a directory.  We distribute a typemap
# of the complete index.html collection, so we use that index.html.var
# typemap here.
# typemap here.  If Options is set to Multiviews, this optimization is lost.
#
    DirectoryIndex index.html.var index.html
    DirectoryIndex index.html index.html.var

</Directory>

+2 −2
Original line number Diff line number Diff line
@@ -235,9 +235,9 @@ DocumentRoot "@@ServerRoot@@/htdocs"
# Note that directly accessing an index.html.var typemap is much faster
# than using MultiViews negotation on a directory.  We distribute a typemap
# of the complete index.html collection, so we use that index.html.var
# typemap here.
# typemap here.  If Options is set to Multiviews, this optimization is lost.
#
    DirectoryIndex index.html.var index.html
    DirectoryIndex index.html index.html.var

</Directory>