diff --git a/docs/manual/mod/mod_autoindex.html b/docs/manual/mod/mod_autoindex.html index 7fedd69c48..fde790b571 100644 --- a/docs/manual/mod/mod_autoindex.html +++ b/docs/manual/mod/mod_autoindex.html @@ -545,7 +545,8 @@ IndexIgnore README .htaccess *~ REL="Help" >Compatibility: '+/-' syntax and merging of multiple IndexOptions directives is only available with - Apache 1.3.3 and later + Apache 1.3.3 and later; the FoldersFirst option is only + available with Apache 1.3.10 and later
The IndexOptions directive specifies the behavior of the directory indexing. @@ -564,6 +565,21 @@ This turns on fancy indexing of directories. is combined with any IndexOptions directive already specified for the current scope. +
-<Directory /web/docs>
-IndexOptions FancyIndexing
-</Directory>
-<Directory /web/docs/spec>
-IndexOptions ScanHTMLTitles
+
+<Directory /web/docs>
+ IndexOptions FancyIndexing
</Directory>
-
+<Directory /web/docs/spec>
+ IndexOptions ScanHTMLTitles
+</Directory>
+
then only ScanHTMLTitles will be set for the /web/docs/spec
directory.