2

How do I make a directory listing in apache show the ./hidden files? I tried both

    <Directory /var/www/*>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    </Directory>

and

    <Directory /var/www/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    </Directory>

but neither show the hidden files

Claudiu
  • 224,032
  • 165
  • 485
  • 680

1 Answers1

5

check what your IndexIgnore is set to. On mine, it's:

/etc/apache2/mods-enabled/autoindex.conf:IndexIgnore .??* *~ *# RCS CVS *,v *,t


Obviously, you'd want to remove that .??*
jcomeau_ictx
  • 37,688
  • 6
  • 92
  • 107