Sometimes it’s useful to enable files and directory listing (or indexing) to allow users viewing and downloading all the files within a directory.
To enable this feature just add or change the corresponding portion of the Apache configuration. The configuration file is usually /etc/apache2/apache2.conf
or /etc/httpd/httpd.conf
.
<Directory /files>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Require all granted
</Directory>
The outcome is showed below:
If you have found this post useful, please visit the Contribute page