Monday, September 19, 2011

How to enable Directory listing on Apache

To enable Directory Listing for a particular folder at Apache, you need to set this option on at /etc/httpd/conf/httpd.conf or put your new settings at /etc/httpd/conf.d/yourfile.conf. Either way is find

<Directory /home/mysite/public_html>
        Options Indexes FollowSymLinks
        AllowOverride None
</Directory>

No comments: