diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf/httpd-std.conf | 4 | ||||
-rw-r--r-- | docs/conf/httpd-win.conf | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/conf/httpd-std.conf b/docs/conf/httpd-std.conf index ccc7132990..7c12139afd 100644 --- a/docs/conf/httpd-std.conf +++ b/docs/conf/httpd-std.conf @@ -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> diff --git a/docs/conf/httpd-win.conf b/docs/conf/httpd-win.conf index 8b0092eaab..8265407438 100644 --- a/docs/conf/httpd-win.conf +++ b/docs/conf/httpd-win.conf @@ -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> |