Return-Path: Delivered-To: apmail-httpd-docs-archive@httpd.apache.org Received: (qmail 32484 invoked by uid 500); 26 Jun 2002 02:24:19 -0000 Mailing-List: contact docs-help@httpd.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: docs@httpd.apache.org Delivered-To: mailing list docs@httpd.apache.org Received: (qmail 32466 invoked by uid 500); 26 Jun 2002 02:24:19 -0000 Delivered-To: apmail-apache-docs@apache.org Delivered-To: apmail-httpd-docs-1.3-cvs@apache.org Date: 26 Jun 2002 02:24:18 -0000 Message-ID: <20020626022418.63503.qmail@icarus.apache.org> From: rbowen@apache.org To: httpd-docs-1.3-cvs@apache.org Subject: cvs commit: httpd-docs-1.3/htdocs/manual/misc FAQ-E.html X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N rbowen 2002/06/25 19:24:18 Modified: htdocs/manual/misc FAQ-E.html Log: Add example to directory listing FAQ. Patch is in reaction to comments made on IRC. Revision Changes Path 1.19 +19 -3 httpd-docs-1.3/htdocs/manual/misc/FAQ-E.html Index: FAQ-E.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/misc/FAQ-E.html,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- FAQ-E.html 11 Mar 2002 00:31:21 -0000 1.18 +++ FAQ-E.html 26 Jun 2002 02:24:18 -0000 1.19 @@ -745,9 +745,25 @@

To turn on automatic directory indexing, find the Options directive that applies to the directory and add the Indexes - keyword. To turn off automatic directory indexing, remove + keyword. For example:

+ +
+ <Directory /path/to/directory>
+    Options +Indexes
+ </Directory> +
+ +

To turn off automatic directory indexing, remove the Indexes keyword from the appropriate - Options line.

+ Options line. To turn off directory listing + for a particular subdirectory, you can use + Options -Indexes. For example:

+ +
+ <Directory /path/to/directory>
+    Options -Indexes
+ </Directory> +

--------------------------------------------------------------------- To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org For additional commands, e-mail: docs-help@httpd.apache.org