Hey guys.
Im trying to put on directory listing for all sites.
Some links here pointed me to change -Indexes to +Indexes.
I still can't list. So, i ask you:
How to do this?
Im trying to put on directory listing for all sites.
Some links here pointed me to change -Indexes to +Indexes.
I still can't list. So, i ask you:
How to do this?
DocumentRoot "/var/www/html"
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory "/var/www/html">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
AddHandler cgi-script .cgi .pl
<IfModule mod_userdir.c>
#UserDir public_html
UserDir disabled
</IfModule>
<Directory /home/*>
AllowOverride All
Options -MultiViews +Indexes FollowSymlinks IncludesNoExec +Includes
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>