This file is indexed.

/usr/share/doc/http-icons/examples/htaccess.txt is in http-icons 0~20041010-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<IfModule mod_autoindex.c>

    #
    # FancyIndexing is whether you want fancy directory indexing or standard
    #
    IndexOptions FancyIndexing +SuppressHTMLPreamble
    
    HeaderName /header.html

    #
    # AddIcon* directives tell the server which icon to show for different
    # files or filename extensions.  These are only displayed for
    # FancyIndexed directories.
    #
    AddIconByEncoding (CMP,/icon/compressed.gif) x-compress x-gzip

    AddIconByType (TXT,/icon/text.gif) text/*
    AddIconByType (IMG,/icon/image2.gif) image/*
    AddIconByType (SND,/icon/sound2.gif) audio/*
    AddIconByType (VID,/icon/movie.gif) video/*

    AddIcon /icon/binary.gif .bin .exe
    AddIcon /icon/binhex.gif .hqx
    AddIcon /icon/tar.gif .tar
    AddIcon /icon/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icon/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icon/a.gif .ps .ai .eps
    AddIcon /icon/layout.gif .html .shtml .htm .pdf
    AddIcon /icon/text.gif .txt
    AddIcon /icon/c.gif .c
    AddIcon /icon/p.gif .pl .py
    AddIcon /icon/f.gif .for
    AddIcon /icon/dvi.gif .dvi
    AddIcon /icon/uuencoded.gif .uu
    AddIcon /icon/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icon/tex.gif .tex
    AddIcon /icon/bomb.gif core

    AddIcon /icon/back.gif ..
    AddIcon /icon/hand.right.gif README
    AddIcon /icon/folder.gif ^^DIRECTORY^^
    AddIcon /icon/blank.gif ^^BLANKICON^^

    #
    # DefaultIcon is which icon to show for files which do not have an icon
    # explicitly set.
    #
    DefaultIcon /icon/unknown.gif

    #
    # AddDescription allows you to place a short description after a file in
    # server-generated indexes.  These are only displayed for FancyIndexed
    # directories.
    # Format: AddDescription "description" filename
    #
    #AddDescription "GZIP compressed document" .gz
    #AddDescription "tar archive" .tar
    #AddDescription "GZIP compressed tar archive" .tgz

    #
    # ReadmeName is the name of the README file the server will look for by
    # default, and append to directory listings.
    #
    # HeaderName is the name of a file which should be prepended to
    # directory indexes. 
    #
    ReadmeName README
    HeaderName HEADER

    #
    # IndexIgnore is a set of filenames which directory indexing should ignore
    # and not include in the listing.  Shell-style wildcarding is permitted.
    #
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t

</IfModule>

#    "400 Bad Request",
ErrorDocument  400  /errordocs/400.php

#    "401 Authorization Required",
ErrorDocument  401  /errordocs/401.php

#    "403 Forbidden",
ErrorDocument  403  /errordocs/403.php

#    "404 Not Found",
ErrorDocument  404  /errordocs/404.php

#		"408 Request Timeout"
ErrorDocument		408 /errordocs/408.php

#    "500 Internal Server Error",
ErrorDocument  500  /errordocs/500.php