File: mod_autoindex.html.ja.euc-jp

package info (click to toggle)
apache2 2.2.3-4%2Betch11
  • links: PTS
  • area: main
  • in suites: etch
  • size: 35,160 kB
  • ctags: 19,065
  • sloc: ansic: 206,618; sh: 18,457; perl: 1,649; makefile: 1,103; awk: 874; pascal: 490; python: 308; lex: 191; yacc: 100
file content (985 lines) | stat: -rw-r--r-- 51,057 bytes parent folder | download | duplicates (2)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
<?xml version="1.0" encoding="EUC-JP"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja"><head><!--
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
              This file is generated from xml source: DO NOT EDIT
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
      -->
<title>mod_autoindex - Apache HTTP </title>
<link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
<link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
<link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
<link href="../images/favicon.ico" rel="shortcut icon" /></head>
<body>
<div id="page-header">
<p class="menu"><a href="../mod/">⥸塼</a> | <a href="../mod/directives.html">ǥ쥯ƥ</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Ѹ</a> | <a href="../sitemap.html">ȥޥå</a></p>
<p class="apache">Apache HTTP  С 2.2</p>
<img alt="" src="../images/feather.gif" /></div>
<div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
<div id="path">
<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP </a> &gt; <a href="http://httpd.apache.org/docs/">ɥơ</a> &gt; <a href="../">С 2.2</a> &gt; <a href="./">⥸塼</a></div>
<div id="page-content">
<div id="preamble"><h1>Apache ⥸塼 mod_autoindex</h1>
<div class="toplang">
<p><span>Available Languages: </span><a href="../en/mod/mod_autoindex.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
<a href="../ja/mod/mod_autoindex.html" title="Japanese">&nbsp;ja&nbsp;</a> |
<a href="../ko/mod/mod_autoindex.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
</div>
<table class="module"><tr><th><a href="module-dict.html#Description">:</a></th><td>Unix  <code>ls</code> ޥɤ
    Win32  <code>dir</code> 륳ޥɤ˻
    ǥ쥯ȥꥤǥå</td></tr>
<tr><th><a href="module-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="module-dict.html#ModuleIdentifier">⥸塼뼱̻:</a></th><td>autoindex_module</td></tr>
<tr><th><a href="module-dict.html#SourceFile">ե:</a></th><td>mod_autoindex.c</td></tr></table>
<h3></h3>
 
      <p>ǥ쥯ȥΥǥåĤξ󸻤Τ
      ĤǤޤ:</p>

    <ul>
      <li>̤ <code>index.html</code> ȸƤФ
      桼ˤäƽ񤫤줿ե롣
      <code class="directive"><a href="../mod/mod_dir.html#directoryindex">DirectoryIndex</a></code>
      ǥ쥯ƥ֤ǤΥե̾ꤷޤ
       <code class="module"><a href="../mod/mod_dir.html">mod_dir</a></code> 椵ޤ</li>

      <li>⤷ϡФˤä줿
      ¾Υǥ쥯ƥ֤Ǥΰν񼰤椷ޤ
      <code class="directive"><a href="#addicon">AddIcon</a></code>, <code class="directive"><a href="#addiconbyencoding">AddIconByEncoding</a></code> 
      <code class="directive"><a href="#addiconbytype">AddIconByType</a></code>
      ȤȤǡ͡ʥե륿פФƥ
      åȤޤĤޤꡢꥹȤ줿եˡ
      ե˥ޥåֺǽΥɽޤ
       <code class="module"><a href="../mod/mod_autoindex.html">mod_autoindex</a></code> 椵ޤ</li>
    </ul>
    <p>˾ʤСưǥå˽ (뤤ִ)
    Ǥ褦ˡĤεǽʬΥƤޤ</p>

    <p>ưǥå <code>Options +Indexes</code>
    ȤȤͭˤʤޤܺ٤ˤĤƤϡ
    <code class="directive"><a href="../mod/core.html#options">Options</a></code>
    ǥ쥯ƥ֤</p>

    <p>⤷ <code><a href="#indexoptions.fancyindexing">FancyIndexing</a></code>ץ
    <code class="directive"><a href="../mod/autoindex.html#indexoptions">IndexOptions</a></code>
    ǥ쥯ƥ֤ͿƤʤС
    Ƭɽν֤椹󥯤ˤʤޤ
    ƬΥ󥯤򤹤ȡϺ
    ͤǥȤޤ
    ƱƬ³򤹤ȡߤ˾ȹ߽Ȥˤʤޤ
    ƬΥ󥯤ϡ
    <code class="directive"><a href="#indexoptions">IndexOptions</a></code>
    ǥ쥯ƥ֤
    <code>SuppressColumnSorting</code>
    ץǾäȤǤޤ</p>

    <p>"Size" ǥȤϡѤΤ
    <em>ºݤ</em>եΥǤäơ
    ɽͤǤϤʤȤդƤ -
    ȤξȤ⤬ "1K" ɽƤȤƤ⡢
    1010 ХȤΥեɬ 1011
    ХȤΥե (ξ) ɽޤ</p>
</div>
<div id="quickview"><h3 class="directives">ǥ쥯ƥ</h3>
<ul id="toc">
<li><img alt="" src="../images/down.gif" /> <a href="#addalt">AddAlt</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#addaltbyencoding">AddAltByEncoding</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#addaltbytype">AddAltByType</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#adddescription">AddDescription</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#addicon">AddIcon</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#addiconbyencoding">AddIconByEncoding</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#addiconbytype">AddIconByType</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#defaulticon">DefaultIcon</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#headername">HeaderName</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#indexignore">IndexIgnore</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#indexoptions">IndexOptions</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#indexorderdefault">IndexOrderDefault</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#indexstylesheet">IndexStyleSheet</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#readmename">ReadmeName</a></li>
</ul>
<h3>ȥԥå</h3>
<ul id="topics">
<li><img alt="" src="../images/down.gif" /> <a href="#query">Autoindex ꥯȥ꡼</a></li>
</ul></div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="section">
<h2><a name="query" id="query">Autoindex ꥯȥ꡼</a></h2>
    

    <p>Apache 2.0.23 ǡ
    ॽȤΤ˥꡼ơ
    ꡼ץΥ롼פƳޤ
    ϤФ륯饤ȤΤ٤ƤΨŪ
    Ǥ褦ˡ
    <code><a href="#indexoptions.ignoreclient">IndexOptions
    IgnoreClient</a></code> Ƴޤ</p>

    <p>ॽȤΥإå켫Τ
    Υȥ꡼ץղä
    ʬȤ򻲾Ȥ󥯤Ǥ
    ΥץΤɤǤ⡢
    ǥ쥯ȥ꥽ؤΥꥯȤ˲ä뤳ȤǤޤ</p>

    <ul>
      <li><code>C=N</code> ϡե̾ǥȤޤ</li>

      <li><code>C=M</code> ϡ
      ǥ쥯ȥꡢե̾νǥȤޤ</li>

      <li><code>C=S</code> ϡ
      ǥ쥯ȥꡢե̾νǥȤޤ</li>

      <li class="separate"><code>C=D</code> ϡ
      ǥ쥯ȥꡢե̾νǥȤޤ</li>

      <li><code>O=A</code> ϡɽ򥽡Ȥޤ</li>

      <li class="separate"><code>O=D</code> ϡ߽ɽ򥽡Ȥޤ</li>

      <li><code>F=0</code> ϡñɽν񼰤ˤޤ
      (FancyIndex ǤϤޤ)</li>

      <li><code>F=1</code> ϡFancyIndex 
      ɽɽν񼰤ˤޤ</li>

      <li><code>F=2</code> ϡɽ HTML 
      Υơ֥Ȥä FancyIndex ν񼰤ˤޤ</li>

      <li><code>V=0</code> 
      ϡСˤ륽Ȥ̵ˤޤ</li>

      <li class="separate"><code>V=1</code> 
      ϡСˤ륽Ȥͭˤޤ</li>

      <li><code>P=<var>pattern</var></code> 
      ϡͿ줿 <var>pattern</var>
      Ŭ礷եΤߤɽޤ</li>
    </ul>

    <p>"P (ѥ P)" ꡼ϡ
    ̾ <code class="directive"><a href="#indexignore">IndexIgnore</a></code>
    ǥ쥯ƥ֤줿<em></em>˸졢
    ե̾Ƥ¾ autoindex
    ꥹȽƱͤȽ಼֤³
    ȤդƤ
    <code class="module"><a href="../mod/mod_autoindex.html">mod_autoindex</a></code> Υ꡼ѡ () ϡ
    ǧǽʥץˤ֤Ĥ¨¤ߤޤ
    ꡼Ͼɽ˽ä
    ˤʤäƤʤФʤޤ</p>

    <p>ñϡΥ꡼ץ
    ɽޤ򤽤Τޤڤä HEADER.html 
    ե¸뤳ȤǤޤ
    mod_autoindex  X=Go Ϥˤ֤Ĥ
    Ʋᤵ褦ˡ
    ̤Τΰ "X" ϥꥹȤκǸ֤Ƥޤ</p>

    <div class="example"><p><code>
      &lt;form action="" method="get"&gt;<br />
      <span class="indent">
        Show me a &lt;select name="F"&gt;<br />
        <span class="indent">
          &lt;option value="0"&gt; Plain list&lt;/option&gt;<br />
          &lt;option value="1" selected="selected"&gt; Fancy list&lt;/option&gt;<br />
          &lt;option value="2"&gt; Table list&lt;/option&gt;<br />
        </span>
        &lt;/select&gt;<br />
        Sorted by &lt;select name="C"&gt;<br />
        <span class="indent">
          &lt;option value="N" selected="selected"&gt; Name&lt;/option&gt;<br />
          &lt;option value="M"&gt; Date Modified&lt;/option&gt;<br />
          &lt;option value="S"&gt; Size&lt;/option&gt;<br />
          &lt;option value="D"&gt; Description&lt;/option&gt;<br />
        </span>
        &lt;/select&gt;<br />
        &lt;select name="O"&gt;<br />
        <span class="indent">
          &lt;option value="A" selected="selected"&gt; Ascending&lt;/option&gt;<br />
          &lt;option value="D"&gt; Descending&lt;/option&gt;<br />
        </span>
        &lt;/select&gt;<br />
        &lt;select name="V"&gt;<br />
        <span class="indent">
          &lt;option value="0" selected="selected"&gt; in Normal order&lt;/option&gt;<br />
          &lt;option value="1"&gt; in Version order&lt;/option&gt;<br />
        </span>
        &lt;/select&gt;<br />
        Matching &lt;input type="text" name="P" value="*" /&gt;<br />
        &lt;input type="submit" name="X" value="Go" /&gt;<br />
      </span>
      &lt;/form&gt;
    </code></p></div>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="AddAlt" id="AddAlt">AddAlt</a> <a name="addalt" id="addalt">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>
ɽ롢ե̾򤵤줿إƥ</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>AddAlt <var>string</var> <var>file</var> [<var>file</var>] ...</code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code class="directive">AddAlt</code> ϡ<code><a href="#indexoptions.fancyindexing">FancyIndexing</a></code>
    ˤơɽإƥȤ󶡤ޤ
    <var>file</var> ϡեΥեĥҡ
    ե̾ΰ磻ɥɽʥե̾
    ɤ줫ˤʤޤ
    <var>string</var> ˶򤬤ϰ  (<code>"</code>
     <code>'</code>) ǰϤɬפޤ
    ʸϡ饤ȤɽǤʤ
    Υɤ̵ˤƤ
    μ˼ԤȤɽޤ</p>

    <div class="example"><h3></h3><p><code>
      AddAlt "PDF file" *.pdf<br />
      AddAlt Compressed *.gz *.zip *.Z
    </code></p></div>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="AddAltByEncoding" id="AddAltByEncoding">AddAltByEncoding</a> <a name="addaltbyencoding" id="addaltbyencoding">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>ɽ롢MIME 沽ˡ򤵤줿
إƥ</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>AddAltByEncoding <var>string</var> <var>MIME-encoding</var>
[<var>MIME-encoding</var>] ...</code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code class="directive">AddAltByEncoding</code> ϡ
    <code><a href="#indexoptions.fancyindexing">FancyIndexing</a></code>
    ˤơɽʸ󶡤ޤ
    <var>MIME-encoding</var> ͭ沽㤨
    <code>x-compress</code>
    Ǥ 
    <var>string</var> ˶򤬤Ȥϡ (<code>"</code> 
    <code>'</code>) ǰϤɬפޤ
    ʸϡ饤ȤɽǤʤ
    Υɤ̵ˤƤ
    μ˼ԤȤɽޤ</p>

    <div class="example"><h3></h3><p><code>
      AddAltByEncoding gzip x-gzip
    </code></p></div>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="AddAltByType" id="AddAltByType">AddAltByType</a> <a name="addaltbytype" id="addaltbytype">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>
ɽ롢MIME פ򤵤줿إƥ</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>AddAltByType <var>string</var> <var>MIME-type</var>
[<var>MIME-type</var>] ...</code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code class="directive">AddAltByType</code> ϡ
    <code><a href="#indexoptions.fancyindexing">FancyIndexing</a></code>
    ˤơɽʸꤷޤ
    <var>MIME-type</var> ͭʥס㤨
    <code>text/html</code>
    Ǥ
    <var>string</var> ˶򤬤Ȥϡ (<code>"</code> 
    <code>'</code>) ǰϤɬפޤ
    ʸϡ饤ȤɽǤʤ
    Υɤ̵ˤƤ
    μ˼ԤȤɽޤ</p>

    <div class="example"><h3></h3><p><code>
      AddAltByType 'plain text' text/plain
    </code></p></div>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="AddDescription" id="AddDescription">AddDescription</a> <a name="adddescription" id="adddescription">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>եФɽ</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>AddDescription <var>string</var> <var>file</var> [<var>file</var>] ...</code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code><a href="#indexoptions.fancyindexing">FancyIndexing</a></code>
    ˤơեФɽꤷޤ
    <var>file</var> եΥեĥҡ
    ե̾ΰ磻ɥɽʥե̾
    ɤ줫ˤʤޤ
    <var>string</var> Ű (<code>"</code>) ǰϤޤޤ</p>

    <div class="example"><h3></h3><p><code>
      AddDescription "The planet Mars" /web/pics/mars.gif
    </code></p></div>

    <p>̾ΥǥեȤΰ 23 ХȤǤ
    <code><a href="#indexoptions.suppressicon">IndexOptions SuppressIcon</a></code>
    ץ 6 Хɲá
    <code><a href="#indexoptions.suppresssize">IndexOptions SuppressSize</a></code>
    ץ 7 Хɲá
    <code><a href="#indexoptions.suppresslastmodified">IndexOptions SuppressLastModified</a></code>
    ץ 19 Хɲäޤ
    Ǥ顢ǥեȤκ
    55 ХȤˤʤޤ</p>

    <p>Υ礭񤭤ꡢ
    ̵ĹǤ褤褦ˤ뤿ξܺ٤˴ؤƤϡ
    <a href="#indexoptions.descriptionwidth">DescriptionWidth</a>
    Ȥ
    <code class="directive"><a href="#indexoptions">IndexOptions</a></code> 
    Υɤ</p>

    <div class="note"><h3>ٹ</h3>
      <p><code class="directive">AddDescription</code> 
      줿ƥȤϡʸȤä
      HTML ޡåפޤळȤǤޤ
      ⤷ˤäƥդ줿Ǥݤޤ줿
       (θκǸ夬ڤȤä) 硢
      Ϸ̤ϡǥ쥯ȥλĤʬ˱ƶͿǤ礦</p>
    </div>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="AddIcon" id="AddIcon">AddIcon</a> <a name="addicon" id="addicon">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>եɽ륢̾</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>AddIcon <var>icon</var> <var>name</var>
[<var>name</var>] ...</code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code><a href="#indexoptions.fancyindexing">FancyIndexing</a></code>
    ˤơ
    <var>name</var> ǽե٤ɽ륢ꤷޤ
    <var>icon</var> ϡ(% ǥפ줿) ؤ URL
    ¾ν (<var>alttext</var>, <var>url</var>) Ǥ
     <var>alttext</var>
    ϡ󥰥ե֥饦˥դ줿ƥȥǤ
    </p>

    <p><var>name</var> ϡǥ쥯ȥб <code>^^DIRECTORY^^</code>
    Ԥб <code>^^BLANKICON^^</code>  (ɽ뤿) 
    եĥҤ磻ɥɽե̾ΰ
    ʥե̾Ǥ</p>

    <div class="example"><h3></h3><p><code>
      AddIcon (IMG,/icons/image.xbm) .gif .jpg .xbm<br />
      AddIcon /icons/dir.xbm ^^DIRECTORY^^<br />
      AddIcon /icons/backup.xbm *~
    </code></p></div>
    
    <p>⤷ǽʤ顢
    <code class="directive">AddIcon</code>
    
    <code class="directive"><a href="#addiconbytype">AddIconByType</a></code>
    ͥŪ˻Ȥ٤Ǥ礦</p>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="AddIconByEncoding" id="AddIconByEncoding">AddIconByEncoding</a> <a name="addiconbyencoding" id="addiconbyencoding">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>եɽ륢 MIME 
沽ˡ</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>AddIconByEncoding <var>icon</var> <var>MIME-encoding</var>
[<var>MIME-encoding</var>] ...</code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code><a href="#indexoptions.fancyindexing">FancyIndexing</a></code>
    ˤơե٤ɽ륢ꤷޤ
    <var>icon</var> ϡ(% ǥפ줿) ؤ URL
    ¾ν <code>(<var>alttext</var>, <var>url</var>)</code> Ǥ
     <var>alttext</var>
    ϡ󥰥ե֥饦˥դ줿ƥȥǤ
    </p>

    <p><var>MIME-encoding</var> ϡ׵ᤵ줿󥳡ɤ˳
    磻ɥɽǤ</p>

    <div class="example"><h3></h3><p><code>
      AddIconByEncoding /icons/compress.xbm x-compress
    </code></p></div>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="AddIconByType" id="AddIconByType">AddIconByType</a> <a name="addiconbytype" id="addiconbytype">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>ե٤ɽ륢
MIME פˤä</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>AddIconByType <var>icon</var> <var>MIME-type</var>
[<var>MIME-type</var>] ...</code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code><a href="#indexoptions.fancyindexing">FancyIndexing</a></code>
    ˤơե٤ɽ륢ꤷޤ
    <var>icon</var> ϡ(% ǥפ줿) ؤ URL
    ¾ν <code>(<var>alttext</var>, <var>url</var>)</code> Ǥ
     <var>alttext</var>
    ϡ󥰥ե֥饦˥դ줿ƥȥǤ
    </p>

    <p><var>MIME-type</var> ϡ׵ᤵ줿פ˳
    磻ɥɽǤ</p>

    <div class="example"><h3></h3><p><code>
      AddIconByType (IMG,/icons/image.xbm) image/*
    </code></p></div>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="DefaultIcon" id="DefaultIcon">DefaultIcon</a> <a name="defaulticon" id="defaulticon">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>Υ󤬲ꤵƤʤ
եɽ륢</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>DefaultIcon <var>url-path</var></code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code><a href="#indexoptions.fancyindexing">FancyIndexing</a></code>
    ˤơ
    Υ󤬤ʤ˥եɽ륢ꤷޤ
    <var>url-path</var> ϡ(% ǥפ줿) ؤ URL
    Ǥ</p>

    <div class="example"><h3></h3><p><code>
      DefaultIcon /icon/unknown.xbm
    </code></p></div>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="HeaderName" id="HeaderName">HeaderName</a> <a name="headername" id="headername">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>
ǥåƬե̾</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>HeaderName <var>filename</var></code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code class="directive">HeaderName</code> 
    ǥ쥯ƥ֤ϡ
    ǥåƬե̾ꤷޤ
    <var>Filename</var> ϼե̾Ǥ</p>

    <div class="example"><h3></h3><p><code>
      HeaderName HEADER.html
    </code></p></div>

    <div class="note">
      <p>HeaderName  <code class="directive"><a href="#readmename">ReadmeName</a></code> 
      ξȤ⸽ߤϡ<var>filename</var> 
      򥤥ǥåƤǥ쥯ȥѤ줿 URI
      Ф URI ѥȤưޤ
      <var>filename</var> åǻϤޤϡ
      <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code>
      ХѥȤʤޤ</p>

      <div class="example"><h3></h3><p><code>
        HeaderName /include/HEADER.html
      </code></p></div>
      
      <p><var>filename</var> 
      ᥸㡼ƥȥפ "<code>text/*</code>" 
       (<em>㤨</em><code>text/html</code>, 
      <code>text/plain</code> Ǥ) 
      ΥɥȤȤƲ
      ʤФʤޤ󡣤ϤĤޤꡢ
      ⤷ CGI ץȤμºݤΥե륿פ
      Υǥ쥯ƥ֤Τ褦ˤƼºݤνϤȤϰۤʤä
      <code>text/html</code> ȤƥޡƤ硢
      <var>filename</var>
       CGI ץȤ򻲾Ȥ뤫Τʤ
      ȤȤ̣ޤ:</p>

      <div class="example"><p><code>
        AddType text/html .cgi
      </code></p></div>

      <p><code class="directive"><a href="../mod/core.html#options">Options</a></code> <code>MultiViews</code> 
      ͭˤʤäƤϡ
      <a href="../content-negotiation.html">ƥȥͥ</a>
      Ԥʤޤ
      ⤷ <var>filename</var>  (CGI ץȤǤʤ) Ū 
      <code>text/html</code> ɥȤDz褵졢
      <code class="directive"><a href="../mod/core.html#options">options</a></code>
      <code>Includes</code>  <code>IncludesNOEXEC</code>
      ͭˤʤäƤϡ
      եϥСɥ󥯥롼ɤǽޤ
      (<code class="module"><a href="../mod/mod_include.html">mod_include</a></code> ɥȤ򻲾ȤƲ)</p>
    </div>

    <p>⤷ <code class="directive">HeaderName</code> ǻꤵ줿ե뤬
    HTML ɥȤγʬ (&lt;html&gt;, &lt;head&gt;, 
    ) ޤǤ顢
    <a href="#indexoptions.suppresshtmlpreamble"><code>IndexOptions
    +SuppressHTMLPreamble</code></a>
    ꤷơΥ֤ʤ褦ˤȻפǤ礦</p>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="IndexIgnore" id="IndexIgnore">IndexIgnore</a> <a name="indexignore" id="indexignore">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>ǥ쥯ȥԤʤݤ̵뤹٤
եꥹȤɲ</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>IndexIgnore <var>file</var> [<var>file</var>] ...</code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code class="directive">IndexIgnore</code> ǥ쥯ƥ֤ϡ
    ǥ쥯ȥΰԤݤ̵뤹٤եꥹȤɲäޤ
    <var>file</var> ϡ
    Υ磻ɥɽʥե̾Ǥ
    IndexIgnore ʣϡ̵뤹ꥹȤɲäԤ졢
    ִϹԤޤ󡣥ǥեȤǤϥꥹȤˤ <code>.</code>
    (ȥǥ쥯ȥ) ޤޤƤޤ</p>

    <div class="example"><p><code>
      IndexIgnore README .htaccess *.bak *~
    </code></p></div>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="IndexOptions" id="IndexOptions">IndexOptions</a> <a name="indexoptions" id="indexoptions">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>ǥ쥯ȥꥤǥå͡
</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>IndexOptions  [+|-]<var>option</var> [[+|-]<var>option</var>] ...</code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code class="directive">IndexOptions</code> 
    ϡǥ쥯ȥꥤǥåεưꤷޤ
    <var>option</var> ϼΤɤ줫Ǥ:</p>

    <dl>
      <dt><a name="indexoptions.descriptionwidth" id="indexoptions.descriptionwidth">DescriptionWidth=[<var>n</var> | *]</a>
      (<em>2.0.23 ʹ</em>)</dt>

      <dd><code>DescriptionWidth</code> 
      ɤʸǻꤹ뤳ȤǤޤ</dd>

      <dd><code>-DescriptionWidth</code> (ޤ) ǡ
      <code class="module"><a href="../mod/mod_autoindex.html">mod_autoindex</a></code> Ŭ׻褦ˤǤޤ</dd>

      <dd><code>DescriptionWidth=<var>n</var></code> 
      ǡ <var>n</var> ХȤ˸ꤷޤ</dd>

      <dd><code>DescriptionWidth=*</code> 
      ϡĹ˹碌ɬפĹޤǥФޤ</dd>

      <dd><strong>ݤͭδˤĤƤ
      <code class="directive"><a href="#adddescription">AddDescription</a></code>
      ɤ߲</strong></dd>

      <dt><a name="indexoptions.fancyindexing" id="indexoptions.fancyindexing">FancyIndexing</a></dt>

      <dd>դǥå򥪥ˤޤ</dd>

      <dt><a name="indexoptions.foldersfirst" id="indexoptions.foldersfirst">FoldersFirst</a>
      (<em>2.0.23 ʹ</em>)</dt>

      <dd>Υץͭˤʤä硢֥ǥ쥯ȥΰ
      <em>ɬ</em>ǽ˸ơΥǥ쥯ȥ̾Υե
      θ³ޤ
      ϴŪˤϡեȥǥ쥯ȥĤʬʬơ
      줾̡˥Ȥ졢θ奵֥ǥ쥯ȥˤ
      ɽԤʤޤ㤨ХȽ礬̾ι߽ˤʤäƤơ
      <code>FoldersFirst</code> ͭˤʤäƤϡ
      ֥ǥ쥯ȥ <code>Zed</code> ϥ֥ǥ쥯ȥ
      <code>Beta</code> ˥ꥹȤ졢̾Υե
      <code>Gamma</code>  <code>Alpha</code>
      ˥ꥹȤޤ<strong>Υץ
      <a href="#indexoptions.fancyindexing"><code>FancyIndexing</code></a>
      ͭˤʤäƤȤˤΤߡ̤ޤ</strong></dd>

      <dt><a name="indexoptions.htmltable" id="indexoptions.htmltable">HTMLTable</a> <em>(¸Ū
      Apache 2.0.23 ʹ)</em></dt>

      <dd>μ¸Ūʥץ FancyIndexing ȤȤ˻ꤹ뤳Ȥǡ
      դǥ쥯ȥΤ˥ơ֥Ȥäñɽޤ
      ϸŤ֥饦𤵤뤫⤷ʤȤդƤ
      WinNT 䤽¾ utf-8 
      ͭʥץåȥۡΤ褦ˡե̾ƥȤ
      ɤߤˤʤä꺸ɤߤˤʤꤨäɬפǤ</dd>

      <dt><a name="indexoptions.iconsarelinks" id="indexoptions.iconsarelinks">IconsAreLinks</a></dt>

      <dd>ϡFancyIndexing ˤơ
      ե̾ؤΥ󥯤ΰˤޤ</dd>

      <dt><a name="indexoptions.iconheight" id="indexoptions.iconheight">IconHeight[=<var>pixels</var>]</a></dt>

      <dd>Υץ󤬡IconWidth ȤȤ˻ȤƤϡ
      Фϥե륢Τ <code>img</code>
       <code>height</code>  <code>width</code>
      °褦ˤʤޤ
      ˤäơ᡼ƤɤޤԤʤƤ⡢
      ֥饦ϥڡ쥤Ȥ򤢤餫׻뤳ȤǤޤ
      Υץ˲ͤͿʤСApache
      եȥ󶡤Ƥ륢ɸι⤵
      ǥեȤʤޤ</dd>

      <dt><a name="indexoptions.iconwidth" id="indexoptions.iconwidth">IconWidth[=<var>pixels</var>]</a></dt>

      <dd>Υץ󤬡<code>IconHeight</code> ȤȤ˻ȤƤϡ
      Фϥե륢Τ <code>img</code>
       <code>height</code>  <code>width</code>
      °褦ˤʤޤ
      ˤäơ᡼ƤɤޤԤʤƤ⡢
      ֥饦ϥڡ쥤Ȥ򤢤餫׻뤳ȤǤޤ
      Υץ˲ͤͿʤСApache
      եȥ󶡤Ƥ륢ɸι⤵
      ǥեȤʤޤ</dd>

      <dt><a name="indexoptions.ignorecase" id="indexoptions.ignorecase">IgnoreCase</a></dt>

      <dd>ΥץͭǤȡե̾ʸʸ̤˥Ȥޤ
      㤨Хե̾ǥȤ졢IgnoreCase ͭǤС
      Zeta  alfa θ˥ꥹȤޤ
      (: GAMMA Ͼ gamma ˤʤޤ)</dd>

      <dt><a name="indexoptions.ignoreclient" id="indexoptions.ignoreclient">IgnoreClient</a></dt>

      <dd>Υץ <code class="module"><a href="../mod/mod_autoindex.html">mod_autoindex</a></code> ϡ
      饤ȤƤΥ꡼ѿ̵뤹褦ˤʤޤ
      ϥȽޤߤޤ
      (Ĥޤ <code><a href="#indexoptions.suppresscolumnsorting">SuppressColumnSorting</a></code>
      Ť˰̣ޤ)</dd>

      <dt><a name="indexoptions.namewidth" id="indexoptions.namewidth">NameWidth=[<var>n</var> 
	       | *]</a></dt>

      <dd><code>NameWidth</code> ɤǥե̾Хȿ
      Ǥޤ</dd>

      <dd><code>-NameWidth</code> (ޤ) ǡ
      <code class="module"><a href="../mod/mod_autoindex.html">mod_autoindex</a></code> Ŭ׻褦ˤǤޤ</dd>

      <dd><code>NameWidth=<var>n</var></code> 
      ǡ <var>n</var> ХȤ˸ꤷޤ</dd>

      <dd><code>NameWidth=*</code>
      ϡɬפĹޤǥФޤ</dd>

      <dt><a name="indexoptions.scanhtmltitles" id="indexoptions.scanhtmltitles">ScanHTMLTitles</a></dt>

      <dd>FancyIndexing Τˡ
       HTML ɥȤ饿ȥФȤǽˤޤ
      ⤷ե
      <code class="directive"><a href="#adddescription">AddDescription</a></code>
      ͿƤʤС
      httpd  <code>title</code> ͤɤि˥ɥȤɤ߻Ϥޤ
       CPU  disk ٤򤫤ޤ</dd>

      <dt><a name="indexoptions.showforbidden" id="indexoptions.showforbidden">ShowForbidden</a></dt>

      <dd>ꤷǤäƤ⡢֥ꥯȤη̤ HTTP_UNAUTHORIZED 
      HTTP_FORBIDDEN Υե̤̾걣줿֤Τޤޡ
      եޤ</dd>

      <dt><a name="indexoptions.suppresscolumnsorting" id="indexoptions.suppresscolumnsorting">SuppressColumnSorting</a></dt>

      <dd>⤷ꤵƤСApache 
      FancyIndexing ɽƤǥ쥯ȥǤ
      Ƭ򡢥ȤΤΥ󥯤ˤʤʤޤ
      ǥեȤεưϡ󥯤Ȥޤ
      Ƭ֤ȥͤ˽äƥǥ쥯ȥꥹȤ
      Ȥޤ
      <strong>Apache 2.0.23 ǤϡƱ
      ʸΤΥ꡼βϤ̵ˤޤ
      </strong>
      εư Apache 2.0.23 Ǥ
      <a href="#indexoptions.ignoreclient">IndexOptions
      IgnoreClient</a> 椵褦ˤʤäƤޤ</dd>

      <dt><a name="indexoptions.suppressdescription" id="indexoptions.suppressdescription">SuppressDescription</a></dt>

      <dd> FancyIndexing ˤեõޤ
      ǥեȤǤϡƤ餺
      ΥץȤ¾Τ 23
      ʸζԤȤǤޤ ե˴ؤϡ
      <code class="directive"><a href="#adddescription">AddDescription</a></code> 
      ޤΥॵ¤
      <code><a href="#indexoptions.descriptionwidth">DescriptionWidth</a></code>
      ǥåץ⤴</dd>

      <dt><a name="indexoptions.suppresshtmlpreamble" id="indexoptions.suppresshtmlpreamble">SuppressHTMLPreamble</a></dt>

      <dd>̾
      <code class="directive"><a href="#headername">HeaderName</a></code>
      ǥ쥯ƥ֤ǻꤷե
      ǥ쥯ȥ꤬ºݤ˴ޤǤСɸŪ HTML ץꥢ֥
      (<code>&lt;html&gt;</code>, <code>&lt;head&gt;</code>, <em></em>) θˡ
      ⥸塼ϥեȤ򥤥󥯥롼ɤޤ
      <code>SuppressHTMLPreamble</code> ץϡ
      εư̵ˤǤơ
      ⥸塼뤬إåեȤɽϤޤ
      ξ硢إåե HTML
      ̿ޤǤʤФʤޤ
      إåե뤬¸ߤʤϡץꥢ֥̤̾
      ޤ</dd>

      <dt><a name="indexoptions.suppressicon" id="indexoptions.suppressicon">SuppressIcon</a> (<em>Apache
      2.0.23 ʹ</em>)</dt>

      <dd>
       FancyIndexing ΰ饢õޤ
      <code>SuppressIcon</code>  <code>SuppressRules</code>
      ȹ碌뤳Ȥˤä HTML 3.2 νϤޤ
       HTML 3.2 Ϥϡǽʤˤ <code>img</code>  <code>hr</code>
       <code>pre</code> ֥å (FancyIndexing ǽ񼰤˻ȤƤޤ) 
      ȤػߤƤޤ</dd>

      <dt><a name="indexoptions.suppresslastmodified" id="indexoptions.suppresslastmodified">SuppressLastModified</a></dt>

      <dd>FancyIndexing ˤƺǽɽõޤ</dd>

      <dt><a name="indexoptions.suppressrules" id="indexoptions.suppressrules">SuppressRules</a>
       (<em>Apache 2.0.23 ʹ</em>) </dt>

      <dd>ǥ쥯ȥˤƿʿڤ (<code>hr</code> ) õޤ
      <code>SuppressIcon</code>  <code>SuppressRules</code>
      ȹ碌뤳Ȥˤä HTML 3.2 νϤޤ
       HTML 3.2 Ϥϡǽʤˤ <code>img</code>  <code>hr</code>
       <code>pre</code> ֥å (FancyIndexing ǽ񼰤˻ȤƤޤ) 
      ȤػߤƤޤ</dd>

      <dt><a name="indexoptions.suppresssize" id="indexoptions.suppresssize">SuppressSize</a></dt>

      <dd>FancyIndexing ˤƥե륵ɽõޤ</dd>

      <dt><a name="indexoptions.trackmodified" id="indexoptions.trackmodified">TrackModified</a>
	       (<em>Apache 2.0.23 ʹ</em>)</dt>

      <dd> HTTP إåˡ
      ꥹȤ줿ǥ쥯ȥκǽ ETag ͤޤޤ
      ϡڥ졼ƥ󥰥ƥե륷ƥब
      Ŭڤ stat() ֤֤ͤˤΤͭǤ
      Ĥ UNIX ƥࡢOS2  JFS  Win32  NTFS
      ܥ塼ϤʤäƤޤ
      㤨СOS2  Win32 FAT ܥ塼ϤǤϤޤ
      εǽͭˤʤȡ饤Ȥץ
      <code>HEAD</code> ꥯȤԤȤˤäơ
      եѲפ뤳ȤǤ褦ˤʤޤ
      ĤΥڥ졼ƥ󥰥ƥϡե
      ưեפ뤱ɤ⡢
      ǥ쥯ȥΥեΥդפʤȤȤ
      դƤ
      <strong>¸ߤեΥդΥפѲƤ⡢
      Ƥ Unix ץåȥۡǤϡ
      ǽإå򹹿ޤ</strong>
      ⤷줬פǤС
      Υץ̵ΤޤޤˤƤ</dd>

      <dt><a name="indexoptions.versionsort" id="indexoptions.versionsort">VersionSort</a>
      (<em>Apache 2.0a3 ʹ</em>)</dt>

      <dd><code>VersionSort</code> ɤϥСֹޤե뤬
      ˡǥȤ褦ˤޤ
      ʸ̤̾꥽Ȥ졢
      ʳΡ̾οȤʤʬʸ
      οͤӤޤ

      <div class="example"><h3>:</h3><p><code>
        foo-1.7<br />
        foo-1.7.2<br />
        foo-1.7.12<br />
        foo-1.8.2<br />
        foo-1.8.2a<br />
        foo-1.12
      </code></p></div>

      <p>ֹ椬 0 Ϥޤϡüȹͤޤ</p>

      <div class="example"><p><code>
        foo-1.001<br />
        foo-1.002<br />
        foo-1.030<br />
        foo-1.04
      </code></p></div>
      </dd>

      <dt><a name="indexoptions.xhtml" id="indexoptions.xhtml">XHTML</a>
      (<em>Apache 2.0.49 ʹ</em>)</dt>

      <dd><code>XHTML</code> ɤꤹȡ<code class="module"><a href="../mod/mod_autoindex.html">mod_autoindex</a></code>
       HTML 3.2  XHTML 1.0 ΥɤϤ褦ˤʤޤ</dd>
    </dl>

   
   <dl><dt>Ǥ IndexOptions</dt>
   <dd>
     <p>Apache 1.3.3 Ǥϡ
     <code class="directive">IndexOptions</code> 
     ǥ쥯ƥ֤ΰǴĤ礭ѲƳޤ
     äˡ</p>

     <ul>
     <li>ĤΥǥ쥯ȥФʣ
     <code class="directive">IndexOptions</code> 
     ǥ쥯ƥ֤ϡߤǤϰĤ˥ޡޤ
     η̤ϡ

     <div class="example"><p><code>
       &lt;Directory /foo&gt;
       <span class="indent">
         IndexOptions HTMLTable<br />
         IndexOptions SuppressColumnsorting
       </span>
       &lt;/Directory&gt;
     </code></p></div>

     <p>Ʊˤʤޤ</p>

     <div class="example"><p><code>
       IndexOptions HTMLTable SuppressColumnsorting
     </code></p></div>
     </li>

     <li>ʸ
     (<em>ʤ</em>'+'  '-'
     Ƭդ) ɲá</li>
     </ul>

     <p>'+'  '-' Ƭդɤ˽в񤦤Ȥϡ
     λǤ <code class="directive">IndexOptions</code>
      (ϾήΥǥ쥯ȥѤޤ) 
     ФŬޤ
     ʤ顢Ƭդʤɤ줿ϡ
     ѤץƤȤޤǽвäƤ
     õޤͤƤߤƤ:</p>

     <div class="example"><p><code>
       IndexOptions +ScanHTMLTitles -IconsAreLinks FancyIndexing<br />
       IndexOptions +SuppressSize
     </code></p></div>

     <p>Ȥθ̤
     <code>IndexOptions&nbsp;FancyIndexing&nbsp;+SuppressSize</code>
     ƱǤ
     Ƭդʤ <code>FancyIndexing</code>
     Ǥɤ̵ˤơ
     θѤϤޤ뤫Ǥ</p>

     <p>̵ <code class="directive">IndexOptions</code>
     򤢤ǥ쥯ȥꤹ뤳Ȥˤä
     Ѿõơ<code>+</code>  <code>-</code>
     ƬդʤɤꤷƤ</p>
   </dd>
   </dl>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="IndexOrderDefault" id="IndexOrderDefault">IndexOrderDefault</a> <a name="indexorderdefault" id="indexorderdefault">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>
ǥ쥯ȥꥤǥåɸνդ</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>IndexOrderDefault Ascending|Descending
Name|Date|Size|Description</code></td></tr>
<tr><th><a href="directive-dict.html#Default">ǥե:</a></th><td><code>IndexOrderDefault Ascending Name</code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code class="directive">IndexOrderDefault</code> ǥ쥯ƥ֤
    <code><a href="#indexoptions.fancyindexing">FancyIndexing</a></code>
    ǥåץʻѤޤ
    ǥեȤǤϡFancyIndexing 
    Υǥ쥯ȥϥե̾ξɽޤ
    <code class="directive">IndexOrderDefault</code>
    ǡ֤ɽ֤Ѥ뤳ȤǤޤ</p>

    <p><code class="directive">IndexOrderDefault</code>
    ĤΰȤޤܤϥȤؼ
    <code>Ascending</code>  <code>Descending</code> Τ줫Ǥ
    ܤΰ <code>Name</code>, <code>Date</code>,
    <code>Size</code>  <code>Description</code> 
    Τ줫ĤΥɤǤäơץ饤ޥꥭꤷޤ
    ܤΥ<em></em>ե̾ξˤʤޤ</p>

    <p>Υǥ쥯ƥ֤ <code><a href="#indexoptions.suppresscolumnsorting">SuppressColumnSorting</a></code>
    ǥåץȤȤ߹碌뤳Ȥǡ
    ǥ쥯ȥ򤢤ν֤ǤΤɽ褦ˤǤޤ
    ϡ
    饤Ȥ̤ν֤ǥǥ쥯ȥꥯȤ뤳Ȥɤޤ</p>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="IndexStyleSheet" id="IndexStyleSheet">IndexStyleSheet</a> <a name="indexstylesheet" id="indexstylesheet">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>ǥ쥯ȥꥤǥå CSS 륷Ȥɲä</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>IndexStyleSheet <var>url-path</var></code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code class="directive">IndexStyleSheet</code> ǥ쥯ƥ֤
    ǥåɽ˻Ѥ CSS Υե̾ꤷޤ
    </p>
    <div class="example"><h3></h3><p><code>
      
      IndexStyleSheet "/css/style.css"
    </code></p></div>

</div>
<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="directive-section"><h2><a name="ReadmeName" id="ReadmeName">ReadmeName</a> <a name="readmename" id="readmename">ǥ쥯ƥ</a></h2>
<table class="directive">
<tr><th><a href="directive-dict.html#Description">:</a></th><td>ǥåκǸե̾</td></tr>
<tr><th><a href="directive-dict.html#Syntax">ʸ:</a></th><td><code>ReadmeName <var>filename</var></code></td></tr>
<tr><th><a href="directive-dict.html#Context">ƥ:</a></th><td>ե, Сۥ, ǥ쥯ȥ, .htaccess</td></tr>
<tr><th><a href="directive-dict.html#Override">:</a></th><td>Indexes</td></tr>
<tr><th><a href="directive-dict.html#Status">ơ:</a></th><td>Base</td></tr>
<tr><th><a href="directive-dict.html#Module">⥸塼:</a></th><td>mod_autoindex</td></tr>
</table>
    <p><code class="directive">ReadmeName</code> ǥ쥯ƥ֤ϡ
    ǥåνդäե̾ꤷޤ
    <var>filename</var> ե̾ǡ
    ιԤƤ֤ŪʤΤȤƲᤵޤ
    <var>filename</var> åǻϤޤϡ
    <code class="directive"><a href="../mod/core.html#documentroot">DocumentRoot</a></code>
    ХѥȤʤޤ</p>

    <div class="example"><h3></h3><p><code>
      ReadmeName FOOTER.html
    </code></p></div>

    <div class="example"><h3> 2</h3><p><code>
    ReadmeName /include/FOOTER.html
    </code></p></div>

    <p>ܺ٤ˤޤǤεưˤĤƵҤƤ <code class="directive"><a href="#headername">HeaderName</a></code>
    ⤴</p>

</div>
</div>
<div class="bottomlang">
<p><span>Available Languages: </span><a href="../en/mod/mod_autoindex.html" hreflang="en" rel="alternate" title="English">&nbsp;en&nbsp;</a> |
<a href="../ja/mod/mod_autoindex.html" title="Japanese">&nbsp;ja&nbsp;</a> |
<a href="../ko/mod/mod_autoindex.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a></p>
</div><div id="footer">
<p class="apache">Copyright 2006 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
<p class="menu"><a href="../mod/">⥸塼</a> | <a href="../mod/directives.html">ǥ쥯ƥ</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Ѹ</a> | <a href="../sitemap.html">ȥޥå</a></p></div>
</body></html>