0 votes
in Apache Webserver by
How Do I Disable Directory Indexing?

1 Answer

0 votes
by

You can use “Options -Indexes” in respective directory directive.

Ex:

        Options -Indexes

<Directory />

       Options -Indexes

</Directory>

...