1
0

improved-directory-index.htaccess 751 B

12345678910111213141516171819
  1. # This program is free software: you can redistribute it and/or modify
  2. # it under the terms of the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
  3. #
  4. # You should have received a copy of the
  5. # COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
  6. # along with this program. If not, see http://www.sun.com/cddl/cddl.html
  7. # 2011 http://www.bananas-playground.net
  8. Options +Indexes
  9. <IfModule mod_autoindex.c>
  10. IndexOptions FancyIndexing XHTML HTMLTable FoldersFirst SuppressRules SuppressDescription SuppressHTMLPreamble Charset=UTF-8
  11. HeaderName ./header.txt
  12. ReadmeName ./footer.txt
  13. # http://httpd.apache.org/docs/2.0/mod/mod_autoindex.html#indexignore
  14. IndexIgnore header.txt footer.txt .??* *~ *# HEADER* README* RCS CVS *,v *,t
  15. </IfModule>