blob: 538fddd881a80353276e4b67eb9e43b1ed86c9a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Define some types
AddType application/xhtml+xml .xht
AddType text/html .htm
AddType text/css .css
AddType image/png .png
AddType text/plain .data .list
# Set the default character set
AddDefaultCharset utf-8
# Indexing Options
Options +Indexes
IndexOptions DescriptionWidth=* NameWidth=* FancyIndexing FoldersFirst ScanHTMLTitles
IndexIgnore .htaccess *~ .#* #*# CVS README
ReadmeName README
# Set up the README files to be plain text
<files README>
ForceType text/plain
SetHandler default-handler
</files>
# Add some default descriptions
AddDescription "Information about the files in this directory" README
|