Tagged Questions
1
vote
1answer
243 views
how to configure apache to view hidden (`.`) files?
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
...
1
vote
2answers
939 views
PHP/Apache, options +indexes in htaccess doesn't work for root directory
I need to offer a directory listing of the root directory of my site, so I created an .htaccess file containing
options +indexes
It works for subdirectories, but for the main directory I get the ...
1
vote
2answers
230 views
How to stop Apache from listing the contents of my user directories
I recently ran some penetration testing software on my web site and was surprised for it to report that one of my directory listings was publicly accessible.
It is the directory of the root user ...
0
votes
0answers
117 views
IndexIgnore Wildcard failes on Apache/2.2.8 (Ubuntu)
I figured out the shell wildcard for "everything but pdf"
ls *.!(*pdf)
and ventured that it might work in Apache/2.2.8 (Ubuntu) htaccess as
IndexIgnore *.!(*pdf)
to "Exclusivly display PDF in ...
0
votes
1answer
369 views
Use mod_rewrite to create custom directory index in Apache
So, Apache's default directory listing sucks and mod_autoindex's customisation options suck, so I figured I could write some rewrite rules in my server root to redirect any requests to a directory:
...
0
votes
3answers
1k views
Simple script to replace Apache's mod_autoindex with a user-friendly directory listing
The Apache module mod_autoindex generates "directory indexes" that show users a crude hyperlinked list of the files and directories inside a directory (when there is no index.html or other ...