home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F278089_mod_mime.html.en < prev    next >
Extensible Markup Language  |  2004-09-04  |  59KB  |  937 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
  4.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  5.               This file is generated from xml source: DO NOT EDIT
  6.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7.       -->
  8. <title>mod_mime - Apache HTTP Server</title>
  9. <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
  10. <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
  11. <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
  12. <link href="../images/favicon.ico" rel="shortcut icon" /></head>
  13. <body>
  14. <div id="page-header">
  15. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
  16. <p class="apache">Apache HTTP Server Version 2.0</p>
  17. <img alt="" src="../images/feather.gif" /></div>
  18. <div class="up"><a href="./"><img title="<-" alt="<-" src="../images/left.gif" /></a></div>
  19. <div id="path">
  20. <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs-project/">Documentation</a> > <a href="../">Version 2.0</a> > <a href="./">Modules</a></div>
  21. <div id="page-content">
  22. <div id="preamble"><h1>Apache Module mod_mime</h1>
  23. <div class="toplang">
  24. <p><span>Available Languages: </span><a href="../en/mod/mod_mime.html" title="English"> en </a> |
  25. <a href="../ja/mod/mod_mime.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a></p>
  26. </div>
  27. <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Associates the requested filename's extensions
  28.     with the file's behavior (handlers and filters)
  29.     and content (mime-type, language, character set and
  30.     encoding)</td></tr>
  31. <tr><th><a href="module-dict.html#Status">Status:</a></th><td>Base</td></tr>
  32. <tr><th><a href="module-dict.html#ModuleIdentifier">ModuleáIdentifier:</a></th><td>mime_module</td></tr>
  33. <tr><th><a href="module-dict.html#SourceFile">SourceáFile:</a></th><td>mod_mime.c</td></tr></table>
  34. <h3>Summary</h3>
  35.  
  36.     <p>This module is used to associate various bits of "meta
  37.     information" with files by their filename extensions. This
  38.     information relates the filename of the document to it's
  39.     mime-type, language, character set and encoding. This
  40.     information is sent to the browser, and participates in content
  41.     negotiation, so the user's preferences are respected when
  42.     choosing one of several possible files to serve. See
  43.     <code class="module"><a href="../mod/mod_negotiation.html">mod_negotiation</a></code> for more information
  44.     about <a href="../content-negotiation.html">content negotiation</a>.</p>
  45.  
  46.     <p>The directives <code class="directive"><a href="#addcharset">AddCharset</a></code>, <code class="directive"><a href="#addencoding">AddEncoding</a></code>, <code class="directive"><a href="#addlanguage">AddLanguage</a></code> and <code class="directive"><a href="#addtype">AddType</a></code> are all used to map file
  47.     extensions onto the meta-information for that file. Respectively
  48.     they set the character set, content-encoding, content-language,
  49.     and MIME-type (content-type) of documents.  The directive <code class="directive"><a href="#typesconfig">TypesConfig</a></code> is used to specify a
  50.     file which also maps extensions onto MIME types. </p>
  51.  
  52.     <p>In addition, <code class="module"><a href="../mod/mod_mime.html">mod_mime</a></code> may define the <a href="../handler.html">handler</a> and <a href="../filter.html">filters</a> that originate and process
  53.     content.  The directives <code class="directive"><a href="#addhandler">AddHandler</a></code>, <code class="directive"><a href="#addoutputfilter">AddOutputFilter</a></code>, and <code class="directive"><a href="#addinputfilter">AddInputFilter</a></code> control the modules
  54.     or scripts that serve the document.  The <code class="directive"><a href="#multiviewsmatch">MultiviewsMatch</a></code> directive allows
  55.     <code class="module"><a href="../mod/mod_negotiation.html">mod_negotiation</a></code> to consider these file extensions
  56.     to be included when testing Multiviews matches.</p>
  57.  
  58.     <p>While <code class="module"><a href="../mod/mod_mime.html">mod_mime</a></code> associates meta-information
  59.     with filename extensions, the <code class="module"><a href="../mod/core.html">core</a></code> server
  60.     provides directives that are used to associate all the files in a
  61.     given container (<em>e.g.</em>, <code class="directive"><a href="../mod/core.html#location"><Location></a></code>, <code class="directive"><a href="../mod/core.html#directory"><Directory></a></code>, or <code class="directive"><a href="../mod/core.html#files"><Files></a></code>) with particular
  62.     meta-information. These directives include <code class="directive"><a href="../mod/core.html#forcetype">ForceType</a></code>, <code class="directive"><a href="../mod/core.html#sethandler">SetHandler</a></code>, <code class="directive"><a href="../mod/core.html#setinputfilter">SetInputFilter</a></code>, and <code class="directive"><a href="../mod/core.html#setoutputfilter">SetOutputFilter</a></code>.  The core directives
  63.     override any filename extension mappings defined in
  64.     <code class="module"><a href="../mod/mod_mime.html">mod_mime</a></code>.</p>
  65.  
  66.     <p>Note that changing the meta-information for a file does not
  67.     change the value of the <code>Last-Modified</code> header.
  68.     Thus, previously cached copies may still be used by a client or
  69.     proxy, with the previous headers. If you change the
  70.     meta-information (language, content type, character set or
  71.     encoding) you may need to 'touch' affected files (updating
  72.     their last modified date) to ensure that all visitors are
  73.     receive the corrected content headers.</p>
  74. </div>
  75. <div id="quickview"><h3 class="directives">Directives</h3>
  76. <ul id="toc">
  77. <li><img alt="" src="../images/down.gif" /> <a href="#addcharset">AddCharset</a></li>
  78. <li><img alt="" src="../images/down.gif" /> <a href="#addencoding">AddEncoding</a></li>
  79. <li><img alt="" src="../images/down.gif" /> <a href="#addhandler">AddHandler</a></li>
  80. <li><img alt="" src="../images/down.gif" /> <a href="#addinputfilter">AddInputFilter</a></li>
  81. <li><img alt="" src="../images/down.gif" /> <a href="#addlanguage">AddLanguage</a></li>
  82. <li><img alt="" src="../images/down.gif" /> <a href="#addoutputfilter">AddOutputFilter</a></li>
  83. <li><img alt="" src="../images/down.gif" /> <a href="#addtype">AddType</a></li>
  84. <li><img alt="" src="../images/down.gif" /> <a href="#defaultlanguage">DefaultLanguage</a></li>
  85. <li><img alt="" src="../images/down.gif" /> <a href="#modmimeusepathinfo">ModMimeUsePathInfo</a></li>
  86. <li><img alt="" src="../images/down.gif" /> <a href="#multiviewsmatch">MultiviewsMatch</a></li>
  87. <li><img alt="" src="../images/down.gif" /> <a href="#removecharset">RemoveCharset</a></li>
  88. <li><img alt="" src="../images/down.gif" /> <a href="#removeencoding">RemoveEncoding</a></li>
  89. <li><img alt="" src="../images/down.gif" /> <a href="#removehandler">RemoveHandler</a></li>
  90. <li><img alt="" src="../images/down.gif" /> <a href="#removeinputfilter">RemoveInputFilter</a></li>
  91. <li><img alt="" src="../images/down.gif" /> <a href="#removelanguage">RemoveLanguage</a></li>
  92. <li><img alt="" src="../images/down.gif" /> <a href="#removeoutputfilter">RemoveOutputFilter</a></li>
  93. <li><img alt="" src="../images/down.gif" /> <a href="#removetype">RemoveType</a></li>
  94. <li><img alt="" src="../images/down.gif" /> <a href="#typesconfig">TypesConfig</a></li>
  95. </ul>
  96. <h3>Topics</h3>
  97. <ul id="topics">
  98. <li><img alt="" src="../images/down.gif" /> <a href="#multipleext">Files with Multiple Extensions</a></li>
  99. <li><img alt="" src="../images/down.gif" /> <a href="#contentencoding">Content encoding</a></li>
  100. <li><img alt="" src="../images/down.gif" /> <a href="#charset-lang">Character sets and languages</a></li>
  101. </ul><h3>See also</h3>
  102. <ul class="seealso">
  103. <li><code class="directive"><a href="../mod/mod_mime_magic.html#mimemagicfile">MimeMagicFile</a></code></li>
  104. <li><code class="directive"><a href="../mod/core.html#adddefaultcharset">AddDefaultCharset</a></code></li>
  105. <li><code class="directive"><a href="../mod/core.html#forcetype">ForceType</a></code></li>
  106. <li><code class="directive"><a href="../mod/core.html#defaulttype">DefaultType</a></code></li>
  107. <li><code class="directive"><a href="../mod/core.html#sethandler">SetHandler</a></code></li>
  108. <li><code class="directive"><a href="../mod/core.html#setinputfilter">SetInputFilter</a></code></li>
  109. <li><code class="directive"><a href="../mod/core.html#setoutputfilter">SetOutputFilter</a></code></li>
  110. </ul></div>
  111. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  112. <div class="section">
  113. <h2><a name="multipleext" id="multipleext">Files with Multiple Extensions</a></h2>
  114.     <p>Files can have more than one extension, and the order of the
  115.     extensions is <em>normally</em> irrelevant. For example, if the
  116.     file <code>welcome.html.fr</code> maps onto content type
  117.     <code>text/html</code> and language French then the file
  118.     <code>welcome.fr.html</code> will map onto exactly the same information.
  119.     If more than one extension is given which maps onto the same
  120.     type of meta-information, then the one to the right will be
  121.     used, except for languages and content encodings. For example, if
  122.     <code>.gif</code> maps to the MIME-type <code>image/gif</code> and
  123.     <code>.html</code> maps to the MIME-type <code>text/html</code>, then the
  124.     file <code>welcome.gif.html</code> will be associated with the MIME-type
  125.     <code>text/html</code>.</p>
  126.  
  127.     <p><a href="#charset-lang">Languages</a> and <a href="#contentencoding">content encodings</a> are treated accumulative, because one can assign
  128.     more than one language or encoding to a particular ressource. For example,
  129.     the file <code>welcome.html.en.de</code> will be delivered with
  130.     <code>Content-Language: en, de</code> and <code>Content-Type:
  131.     text/html</code>.</p>
  132.  
  133.     <p>Care should be taken when a file with multiple extensions
  134.     gets associated with both a MIME-type and a handler. This will
  135.     usually result in the request being by the module associated
  136.     with the handler. For example, if the <code>.imap</code>
  137.     extension is mapped to the handler <code>imap-file</code> (from
  138.     <code class="module"><a href="../mod/mod_imap.html">mod_imap</a></code>) and the <code>.html</code> extension is
  139.     mapped to the MIME-type <code>text/html</code>, then the file
  140.     <code>world.imap.html</code> will be associated with both the
  141.     <code>imap-file</code> handler and <code>text/html</code> MIME-type.
  142.     When it is processed, the <code>imap-file</code> handler will be used,
  143.     and so it will be treated as a <code class="module"><a href="../mod/mod_imap.html">mod_imap</a></code> imagemap
  144.     file.</p>
  145. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  146. <div class="section">
  147. <h2><a name="contentencoding" id="contentencoding">Content encoding</a></h2>
  148.     <p>A file of a particular MIME type can additionally be encoded a
  149.     particular way to simplify transmission over the Internet.
  150.     While this usually will refer to compression, such as
  151.     <code>gzip</code>, it can also refer to encryption, such a
  152.     <code>pgp</code> or to an encoding such as UUencoding, which is
  153.     designed for transmitting a binary file in an ASCII (text)
  154.     format.</p>
  155.  
  156.     <p>The <a href="http://www.ietf.org/rfc/rfc2616.txt">HTTP/1.1
  157.     RFC</a>, section 14.11 puts it this way:</p>
  158.  
  159.     <blockquote cite="http://www.ietf.org/rfc/rfc2616.txt">
  160.       <p>The Content-Encoding entity-header field is used as a modifier to
  161.       the media-type. When present, its value indicates what additional
  162.       content codings have been applied to the entity-body, and thus what
  163.       decoding mechanisms must be applied in order to obtain the media-type
  164.       referenced by the Content-Type header field. Content-Encoding is
  165.       primarily used to allow a document to be compressed without losing
  166.       the identity of its underlying media type.</p>
  167.     </blockquote>
  168.  
  169.     <p>By using more than one file extension (see <a href="#multipleext">section above about multiple file
  170.     extensions</a>), you can indicate that a file is of a
  171.     particular <em>type</em>, and also has a particular
  172.     <em>encoding</em>. </p>
  173.  
  174.     <p>For example, you may have a file which is a Microsoft Word
  175.     document, which is pkzipped to reduce its size. If the
  176.     <code>.doc</code> extension is associated with the Microsoft
  177.     Word file type, and the <code>.zip</code> extension is
  178.     associated with the pkzip file encoding, then the file
  179.     <code>Resume.doc.zip</code> would be known to be a pkzip'ed Word
  180.     document.</p>
  181.  
  182.     <p>Apache sends a <code>Content-encoding</code> header with the
  183.     resource, in order to tell the client browser about the
  184.     encoding method.</p>
  185.  
  186.     <div class="example"><p><code>Content-encoding: pkzip</code></p></div>
  187. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  188. <div class="section">
  189. <h2><a name="charset-lang" id="charset-lang">Character sets and languages</a></h2>
  190.     <p>In addition to file type and the file encoding,
  191.     another important piece of information is what language a
  192.     particular document is in, and in what character set the file
  193.     should be displayed. For example, the document might be written
  194.     in the Vietnamese alphabet, or in Cyrillic, and should be
  195.     displayed as such. This information, also, is transmitted in
  196.     HTTP headers.</p>
  197.  
  198.     <p>The character set, language, encoding and mime type are all 
  199.     used in the process of content negotiation (See 
  200.     <code class="module"><a href="../mod/mod_negotiation.html">mod_negotiation</a></code>) to determine
  201.     which document to give to the client, when there are
  202.     alternative documents in more than one character set, language, 
  203.     encoding or mime type. All filename extensions associations
  204.     created with <code class="directive"><a href="#addcharset">AddCharset</a></code>,
  205.     <code class="directive"><a href="#addencoding">AddEncoding</a></code>, <code class="directive"><a href="#addlanguage">AddLanguage</a></code> and <code class="directive"><a href="#addtype">AddType</a></code> directives
  206.     (and extensions listed in the <code class="directive"><a href="../mod/mod_mime_magic.html#mimemagicfile">MimeMagicFile</a></code>) participate in this select process.
  207.     Filename extensions that are only associated using the <code class="directive"><a href="#addhandler">AddHandler</a></code>, <code class="directive"><a href="#addinputfilter">AddInputFilter</a></code> or <code class="directive"><a href="#addoutputfilter">AddOutputFilter</a></code> directives may be included or excluded
  208.     from matching by using the <code class="directive"><a href="#multiviewsmatch">MultiviewsMatch</a></code> directive.</p>
  209.  
  210.     <h3><a name="charset" id="charset">Charset</a></h3>
  211.       <p>To convey this further information, Apache optionally sends
  212.       a <code>Content-Language</code> header, to specify the language
  213.       that the document is in, and can append additional information
  214.       onto the <code>Content-Type</code> header to indicate the
  215.       particular character set that should be used to correctly
  216.       render the information.</p>
  217.  
  218.       <div class="example"><p><code>
  219.         Content-Language: en, fr<br />
  220.     Content-Type: text/plain; charset=ISO-8859-1
  221.       </code></p></div>
  222.  
  223.       <p>The language specification is the two-letter abbreviation
  224.       for the language. The <code>charset</code> is the name of the
  225.       particular character set which should be used.</p>
  226.     
  227. </div>
  228. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  229. <div class="directive-section"><h2><a name="AddCharset" id="AddCharset">AddCharset</a> <a name="addcharset" id="addcharset">Directive</a></h2>
  230. <table class="directive">
  231. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Maps the given filename extensions to the specified content
  232. charset</td></tr>
  233. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AddCharset <var>charset</var> <var>extension</var>
  234. [<var>extension</var>] ...</code></td></tr>
  235. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
  236. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  237. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  238. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  239. </table>
  240.     <p>The <code class="directive">AddCharset</code> directive maps the given
  241.     filename extensions to the specified content charset. <var>charset</var>
  242.     is the MIME charset parameter of filenames containing
  243.     <var>extension</var>. This mapping is added to any already in force,
  244.     overriding any mappings that already exist for the same
  245.     <var>extension</var>.</p>
  246.  
  247.     <div class="example"><h3>Example</h3><p><code>
  248.       AddLanguage ja .ja<br />
  249.       AddCharset EUC-JP .euc<br />
  250.       AddCharset ISO-2022-JP .jis<br />
  251.       AddCharset SHIFT_JIS .sjis
  252.     </code></p></div>
  253.  
  254.     <p>Then the document <code>xxxx.ja.jis</code> will be treated
  255.     as being a Japanese document whose charset is <code>ISO-2022-JP</code>
  256.     (as will the document <code>xxxx.jis.ja</code>). The
  257.     <code class="directive">AddCharset</code> directive is useful for both to
  258.     inform the client about the character encoding of the document so that
  259.     the document can be interpreted and displayed appropriately, and for <a href="../content-negotiation.html">content negotiation</a>,
  260.     where the server returns one from several documents based on
  261.     the client's charset preference.</p>
  262.  
  263.     <p>The <var>extension</var> argument is case-insensitive, and can
  264.     be specified with or without a leading dot.</p>
  265.  
  266. <h3>See also</h3>
  267. <ul>
  268. <li><code class="module"><a href="../mod/mod_negotiation.html">mod_negotiation</a></code></li>
  269. <li><code class="directive"><a href="../mod/core.html#adddefaultcharset">AddDefaultCharset</a></code></li>
  270. </ul>
  271. </div>
  272. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  273. <div class="directive-section"><h2><a name="AddEncoding" id="AddEncoding">AddEncoding</a> <a name="addencoding" id="addencoding">Directive</a></h2>
  274. <table class="directive">
  275. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Maps the given filename extensions to the specified encoding
  276. type</td></tr>
  277. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AddEncoding <var>MIME-enc</var> <var>extension</var>
  278. [<var>extension</var>] ...</code></td></tr>
  279. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
  280. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  281. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  282. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  283. </table>
  284.     <p>The <code class="directive">AddEncoding</code> directive maps the given
  285.     filename extensions to the specified encoding type. <var>MIME-enc</var>
  286.     is the MIME encoding to use for documents containing the
  287.     <var>extension</var>. This mapping is added to any already in force,
  288.     overriding any mappings that already exist for the same
  289.     <var>extension</var>.</p>
  290.  
  291.     <div class="example"><h3>Example</h3><p><code>
  292.       AddEncoding x-gzip .gz<br />
  293.       AddEncoding x-compress .Z
  294.     </code></p></div>
  295.  
  296.     <p>This will cause filenames containing the <code>.gz</code> extension
  297.     to be marked as encoded using the <code>x-gzip</code> encoding, and
  298.     filenames containing the <code>.Z</code> extension to be marked as
  299.     encoded with <code>x-compress</code>.</p>
  300.  
  301.     <p>Old clients expect <code>x-gzip</code> and <code>x-compress</code>,
  302.     however the standard dictates that they're equivalent to
  303.     <code>gzip</code> and <code>compress</code> respectively. Apache does
  304.     content encoding comparisons by ignoring any leading <code>x-</code>.
  305.     When responding with an encoding Apache will use whatever form
  306.     (<em>i.e.</em>, <code>x-foo</code> or <code>foo</code>) the
  307.     client requested. If the client didn't specifically request a
  308.     particular form Apache will use the form given by the
  309.     <code>AddEncoding</code> directive. To make this long story
  310.     short, you should always use <code>x-gzip</code> and
  311.     <code>x-compress</code> for these two specific encodings. More
  312.     recent encodings, such as <code>deflate</code> should be
  313.     specified without the <code>x-</code>.</p>
  314.  
  315.     <p>The <var>extension</var> argument is case-insensitive, and can
  316.     be specified with or without a leading dot.</p>
  317.  
  318. </div>
  319. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  320. <div class="directive-section"><h2><a name="AddHandler" id="AddHandler">AddHandler</a> <a name="addhandler" id="addhandler">Directive</a></h2>
  321. <table class="directive">
  322. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Maps the filename extensions to the specified
  323. handler</td></tr>
  324. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AddHandler <var>handler-name</var> <var>extension</var>
  325. [<var>extension</var>] ...</code></td></tr>
  326. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
  327. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  328. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  329. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  330. </table>
  331.     <p>Files having the name <var>extension</var> will be served by the
  332.     specified <var><a href="../handler.html">handler-name</a></var>. This
  333.     mapping is added to any already in force, overriding any mappings that
  334.     already exist for the same <var>extension</var>. For example, to
  335.     activate CGI scripts with the file extension <code>.cgi</code>, you
  336.     might use:</p>
  337.  
  338.     <div class="example"><p><code>
  339.       AddHandler cgi-script .cgi
  340.     </code></p></div>
  341.  
  342.     <p>Once that has been put into your httpd.conf file, any file containing
  343.     the <code>.cgi</code> extension will be treated as a CGI program.</p>
  344.  
  345.     <p>The <var>extension</var> argument is case-insensitive, and can
  346.     be specified with or without a leading dot.</p>
  347.  
  348. <h3>See also</h3>
  349. <ul>
  350. <li><code class="directive"><a href="../mod/core.html#sethandler">SetHandler</a></code></li>
  351. </ul>
  352. </div>
  353. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  354. <div class="directive-section"><h2><a name="AddInputFilter" id="AddInputFilter">AddInputFilter</a> <a name="addinputfilter" id="addinputfilter">Directive</a></h2>
  355. <table class="directive">
  356. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Maps filename extensions to the filters that will process
  357. client requests</td></tr>
  358. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AddInputFilter <var>filter</var>[;<var>filter</var>...]
  359. <var>extension</var> [<var>extension</var>] ...</code></td></tr>
  360. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
  361. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  362. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  363. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  364. <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>AddInputFilter is only available in Apache 2.0.26 and
  365. later.</td></tr>
  366. </table>
  367.     <p><code class="directive">AddInputFilter</code> maps the filename extension
  368.     <var>extension</var> to the <a href="../filter.html">filters</a> which
  369.     will process client requests and POST input when they are received by
  370.     the server. This is in addition to any filters defined elsewhere,
  371.     including the <code class="directive"><a href="../mod/core.html#setinputfilter">SetInputFilter</a></code>
  372.     directive. This mapping is merged over any already in force, overriding
  373.     any mappings that already exist for the same <var>extension</var>.</p>
  374.  
  375.     <p>If more than one filter is specified, they must be separated
  376.     by semicolons in the order in which they should process the
  377.     content. Both the filter and <var>extension</var> arguments are
  378.     case-insensitive, and the extension may be specified with or
  379.     without a leading dot.</p>
  380.  
  381. <h3>See also</h3>
  382. <ul>
  383. <li><code class="directive"><a href="#removeinputfilter">RemoveInputFilter</a></code></li>
  384. <li><code class="directive"><a href="../mod/core.html#setinputfilter">SetInputFilter</a></code></li>
  385. </ul>
  386. </div>
  387. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  388. <div class="directive-section"><h2><a name="AddLanguage" id="AddLanguage">AddLanguage</a> <a name="addlanguage" id="addlanguage">Directive</a></h2>
  389. <table class="directive">
  390. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Maps the given filename extension to the specified content
  391. language</td></tr>
  392. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AddLanguage <var>MIME-lang</var> <var>extension</var>
  393. [<var>extension</var>] ...</code></td></tr>
  394. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
  395. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  396. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  397. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  398. </table>
  399.     <p>The <code class="directive">AddLanguage</code> directive maps the given
  400.     filename extension to the specified content language.
  401.     <var>MIME-lang</var> is the MIME language of filenames containing
  402.     <var>extension</var>. This mapping is added to any already in force,
  403.     overriding any mappings that already exist for the same
  404.     <var>extension</var>.</p>
  405.  
  406.     <div class="example"><h3>Example</h3><p><code>
  407.       AddEncoding x-compress .Z<br />
  408.       AddLanguage en .en<br />
  409.       AddLanguage fr .fr
  410.     </code></p></div>
  411.  
  412.     <p>Then the document <code>xxxx.en.Z</code> will be treated as
  413.     being a compressed English document (as will the document
  414.     <code>xxxx.Z.en</code>). Although the content language is
  415.     reported to the client, the browser is unlikely to use this
  416.     information. The <code class="directive">AddLanguage</code> directive is
  417.     more useful for <a href="../content-negotiation.html">content
  418.     negotiation</a>, where the server returns one from several documents
  419.     based on the client's language preference.</p>
  420.  
  421.     <p>If multiple language assignments are made for the same
  422.     extension, the last one encountered is the one that is used.
  423.     That is, for the case of:</p>
  424.  
  425.     <div class="example"><p><code>
  426.       AddLanguage en .en<br />
  427.       AddLanguage en-gb .en<br />
  428.       AddLanguage en-us .en
  429.     </code></p></div>
  430.  
  431.     <p>documents with the extension <code>.en</code> would be treated as
  432.     being <code>en-us</code>.</p>
  433.  
  434.     <p>The <var>extension</var> argument is case-insensitive, and can
  435.     be specified with or without a leading dot.</p>
  436.  
  437. <h3>See also</h3>
  438. <ul>
  439. <li><code class="module"><a href="../mod/mod_negotiation.html">mod_negotiation</a></code></li>
  440. </ul>
  441. </div>
  442. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  443. <div class="directive-section"><h2><a name="AddOutputFilter" id="AddOutputFilter">AddOutputFilter</a> <a name="addoutputfilter" id="addoutputfilter">Directive</a></h2>
  444. <table class="directive">
  445. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Maps filename extensions to the filters that will process
  446. responses from the server</td></tr>
  447. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AddOutputFilter <var>filter</var>[;<var>filter</var>...]
  448. <var>extension</var> [<var>extension</var>] ...</code></td></tr>
  449. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
  450. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  451. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  452. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  453. <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>AddOutputFilter is only available in Apache 2.0.26 and
  454. later.</td></tr>
  455. </table>
  456.     <p>The <code class="directive">AddOutputFilter</code> directive maps the
  457.     filename extension <var>extension</var> to the <a href="../filter.html">filters</a> which will process responses
  458.     from the server before they are sent to the client. This is in
  459.     addition to any filters defined elsewhere, including <code class="directive"><a href="../mod/core.html#setoutputfilter">SetOutputFilter</a></code> and <code class="directive"><a href="../mod/core.html#addoutputfilterbytype">AddOutputFilterByType</a></code> directive. This mapping is merged
  460.     over any already in force, overriding any mappings that already exist
  461.     for the same <var>extension</var>.</p>
  462.  
  463.     <p>For example, the following configuration will process all
  464.     <code>.shtml</code> files for server-side includes and will then
  465.     compress the output using <code class="module"><a href="../mod/mod_deflate.html">mod_deflate</a></code>.</p>
  466.  
  467.     <div class="example"><p><code>
  468.       AddOutputFilter INCLUDES;DEFLATE shtml
  469.     </code></p></div>
  470.  
  471.     <p>If more than one filter is specified, they must be separated
  472.     by semicolons in the order in which they should process the
  473.     content. Both the <var>filter</var> and <var>extension</var> arguments
  474.     are case-insensitive, and the extension may be specified with or
  475.     without a leading dot.</p>
  476.  
  477. <h3>See also</h3>
  478. <ul>
  479. <li><code class="directive"><a href="#removeoutputfilter">RemoveOutputFilter</a></code></li>
  480. <li><code class="directive"><a href="../mod/core.html#setoutputfilter">SetOutputFilter</a></code></li>
  481. </ul>
  482. </div>
  483. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  484. <div class="directive-section"><h2><a name="AddType" id="AddType">AddType</a> <a name="addtype" id="addtype">Directive</a></h2>
  485. <table class="directive">
  486. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Maps the given filename extensions onto the specified content
  487. type</td></tr>
  488. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>AddType <var>MIME-type</var> <var>extension</var>
  489. [<var>extension</var>] ...</code></td></tr>
  490. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
  491. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  492. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  493. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  494. </table>
  495.     <p>The <code class="directive">AddType</code> directive maps the given filename
  496.     extensions onto the specified content type. <var>MIME-type</var> is the
  497.     MIME type to use for filenames containing <var>extension</var>. This
  498.     mapping is added to any already in force, overriding any mappings that
  499.     already exist for the same <var>extension</var>. This directive can
  500.     be used to add mappings not listed in the MIME types file (see the
  501.     <code class="directive"><a href="#typesconfig">TypesConfig</a></code> directive).</p>
  502.     
  503.     <div class="example"><h3>Example</h3><p><code>
  504.       AddType image/gif .gif
  505.     </code></p></div>
  506.  
  507.     <div class="note">
  508.       It is recommended that new MIME types be added using the
  509.       <code class="directive">AddType</code> directive rather than changing the 
  510.       <code class="directive"><a href="#typesconfig">TypesConfig</a></code> file.
  511.     </div>
  512.  
  513.     <p>The <var>extension</var> argument is case-insensitive, and can
  514.     be specified with or without a leading dot.</p>
  515.  
  516. <h3>See also</h3>
  517. <ul>
  518. <li><code class="directive"><a href="../mod/core.html#defaulttype">DefaultType</a></code></li>
  519. <li><code class="directive"><a href="../mod/core.html#forcetype">ForceType</a></code></li>
  520. </ul>
  521. </div>
  522. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  523. <div class="directive-section"><h2><a name="DefaultLanguage" id="DefaultLanguage">DefaultLanguage</a> <a name="defaultlanguage" id="defaultlanguage">Directive</a></h2>
  524. <table class="directive">
  525. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Sets all files in the given scope to the specified
  526. language</td></tr>
  527. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>DefaultLanguage <var>MIME-lang</var></code></td></tr>
  528. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
  529. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  530. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  531. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  532. </table>
  533.     <p>The <code class="directive">DefaultLanguage</code> directive tells Apache
  534.     that all files in the directive's scope (<em>e.g.</em>, all files
  535.     covered by the current <code class="directive"><a href="../mod/core.html#directory"><Directory></a></code> container) that don't have an explicit language
  536.     extension (such as <code>.fr</code> or <code>.de</code> as configured
  537.     by <code class="directive"><a href="#addlanguage">AddLanguage</a></code>) should be
  538.     considered to be in the specified <var>MIME-lang</var> language. This
  539.     allows entire directories to be marked as containing Dutch content, for
  540.     instance, without having to rename each file. Note that unlike using
  541.     extensions to specify languages, <code class="directive">DefaultLanguage</code>
  542.     can only specify a single language.</p>
  543.  
  544.     <p>If no <code class="directive">DefaultLanguage</code> directive is in force,
  545.     and a file does not have any language extensions as configured
  546.     by <code class="directive"><a href="#addlanguage">AddLanguage</a></code>, then that file
  547.     will be considered to have no language attribute.</p>
  548.  
  549.     <div class="example"><h3>Example</h3><p><code>
  550.       DefaultLanguage en
  551.     </code></p></div>
  552.  
  553. <h3>See also</h3>
  554. <ul>
  555. <li><code class="module"><a href="../mod/mod_negotiation.html">mod_negotiation</a></code></li>
  556. </ul>
  557. </div>
  558. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  559. <div class="directive-section"><h2><a name="ModMimeUsePathInfo" id="ModMimeUsePathInfo">ModMimeUsePathInfo</a> <a name="modmimeusepathinfo" id="modmimeusepathinfo">Directive</a></h2>
  560. <table class="directive">
  561. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Tells mod_mime to treat path_info
  562. components as part of the filename</td></tr>
  563. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>ModMimeUsePathInfo On|Off</code></td></tr>
  564. <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>ModMimeUsePathInfo Off</code></td></tr>
  565. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>directory</td></tr>
  566. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  567. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  568. <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>Available in Apache 2.0.41 and later</td></tr>
  569. </table>
  570.     <p>The <code class="directive">ModMimeUsePathInfo</code> directive is used to
  571.     combine the filename with the <code>path_info</code> URL component to
  572.     apply <code class="module"><a href="../mod/mod_mime.html">mod_mime</a></code>'s directives to the request. The default
  573.     value is <code>Off</code> - therefore, the <code>path_info</code>
  574.     component is ignored.</p>
  575.  
  576.     <p>This directive is recommended when you have a virtual filesystem.</p>
  577.  
  578.     <div class="example"><h3>Example</h3><p><code>
  579.       ModMimeUsePathInfo On
  580.     </code></p></div>
  581.  
  582.     <p>If you have a request for <code>/bar/foo.shtml</code> where
  583.     <code>/bar</code> is a Location and <code class="directive">ModMimeUsePathInfo</code> is <code>On</code>,
  584.     <code class="module"><a href="../mod/mod_mime.html">mod_mime</a></code> will treat the incoming request as
  585.     <code>/bar/foo.shtml</code> and directives like <code>AddOutputFilter
  586.     INCLUDES .shtml</code> will add the <code>INCLUDES</code> filter to the
  587.     request. If <code class="directive">ModMimeUsePathInfo</code> is not set, the
  588.     <code>INCLUDES</code> filter will not be added.</p>
  589.  
  590. <h3>See also</h3>
  591. <ul>
  592. <li><code class="directive"><a href="../mod/core.html#acceptpathinfo">AcceptPathInfo</a></code></li>
  593. </ul>
  594. </div>
  595. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  596. <div class="directive-section"><h2><a name="MultiviewsMatch" id="MultiviewsMatch">MultiviewsMatch</a> <a name="multiviewsmatch" id="multiviewsmatch">Directive</a></h2>
  597. <table class="directive">
  598. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>The types of files that will be included when searching for
  599. a matching file with MultiViews</td></tr>
  600. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>MultiviewsMatch Any|NegotiatedOnly|Filters|Handlers
  601. [Handlers|Filters]</code></td></tr>
  602. <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>MultiviewsMatch NegotiatedOnly</code></td></tr>
  603. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config, virtual host, directory, .htaccess</td></tr>
  604. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  605. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  606. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  607. <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>Available in Apache 2.0.26 and later.</td></tr>
  608. </table>
  609.     <p><code class="directive">MultiviewsMatch</code> permits three different
  610.     behaviors for <a href="mod_negotiation.html">mod_negotiation</a>'s
  611.     Multiviews feature.  Multiviews allows a request for a file,
  612.     <em>e.g.</em> <code>index.html</code>, to match any negotiated
  613.     extensions following the base request, <em>e.g.</em>
  614.     <code>index.html.en</code>, <code>index.html.fr</code>, or
  615.     <code>index.html.gz</code>.</p>
  616.  
  617.     <p>The <code>NegotiatedOnly</code> option provides that every extension
  618.     following the base name must correlate to a recognized
  619.     <code class="module"><a href="../mod/mod_mime.html">mod_mime</a></code> extension for content negotation, <em>e.g.</em>
  620.     Charset, Content-Type, Language, or Encoding.  This is the strictest
  621.     implementation with the fewest unexpected side effects, and is the
  622.     default behavior.</p>
  623.  
  624.     <p>To include extensions associated with Handlers and/or Filters,
  625.     set the <code class="directive">MultiviewsMatch</code> directive to either
  626.     <code>Handlers</code>, <code>Filters</code>, or both option keywords.
  627.     If all other factors are equal, the smallest file will be served,
  628.     <em>e.g.</em> in deciding between <code>index.html.cgi</code> of 500
  629.     bytes and <code>index.html.pl</code> of 1000 bytes, the <code>.cgi</code>
  630.     file would win in this example. Users of <code>.asis</code> files
  631.     might prefer to use the Handler option, if <code>.asis</code> files are
  632.     associated with the <code>asis-handler</code>.</p>
  633.  
  634.     <p>You may finally allow <code>Any</code> extensions to match, even if
  635.     <code class="module"><a href="../mod/mod_mime.html">mod_mime</a></code> doesn't recognize the extension. This was the
  636.     behavior in Apache 1.3, and can cause unpredicatable results, such as
  637.     serving .old or .bak files the webmaster never expected to be served.</p>
  638.  
  639.     <p>For example, the following configuration will allow handlers
  640.     and filters to participate in Multviews, but will exclude unknown
  641.     files:</p>
  642.  
  643.     <div class="example"><p><code>
  644.       MultiviewsMatch Handlers Filters
  645.     </code></p></div>
  646.  
  647. <h3>See also</h3>
  648. <ul>
  649. <li><code class="directive"><a href="../mod/core.html#options">Options</a></code></li>
  650. <li><code class="module"><a href="../mod/mod_negotiation.html">mod_negotiation</a></code></li>
  651. </ul>
  652. </div>
  653. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  654. <div class="directive-section"><h2><a name="RemoveCharset" id="RemoveCharset">RemoveCharset</a> <a name="removecharset" id="removecharset">Directive</a></h2>
  655. <table class="directive">
  656. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Removes any character set associations for a set of file
  657. extensions</td></tr>
  658. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>RemoveCharset <var>extension</var> [<var>extension</var>]
  659. ...</code></td></tr>
  660. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>virtual host, directory, .htaccess</td></tr>
  661. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  662. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  663. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  664. <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>RemoveCharset is only available in Apache 2.0.24 and
  665. later.</td></tr>
  666. </table>
  667.     <p>The <code class="directive">RemoveCharset</code> directive removes any
  668.     character set associations for files with the given extensions.
  669.     This allows <code>.htaccess</code> files in subdirectories to
  670.     undo any associations inherited from parent directories or the
  671.     server config files.</p>
  672.  
  673.     <p>The <var>extension</var> argument is case-insensitive, and can
  674.     be specified with or without a leading dot.</p>
  675.  
  676.     <div class="example"><h3>Example</h3><p><code>
  677.       RemoveCharset .html .shtml
  678.     </code></p></div>
  679.  
  680. </div>
  681. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  682. <div class="directive-section"><h2><a name="RemoveEncoding" id="RemoveEncoding">RemoveEncoding</a> <a name="removeencoding" id="removeencoding">Directive</a></h2>
  683. <table class="directive">
  684. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Removes any content encoding associations for a set of file
  685. extensions</td></tr>
  686. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>RemoveEncoding <var>extension</var> [<var>extension</var>]
  687. ...</code></td></tr>
  688. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>virtual host, directory, .htaccess</td></tr>
  689. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  690. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  691. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  692. </table>
  693.     <p>The <code class="directive">RemoveEncoding</code> directive removes any
  694.     encoding associations for files with the given extensions. This
  695.     allows <code>.htaccess</code> files in subdirectories to undo
  696.     any associations inherited from parent directories or the
  697.     server config files. An example of its use might be:</p>
  698.  
  699.     <div class="example"><h3>/foo/.htaccess:</h3><p><code>
  700.       AddEncoding x-gzip .gz<br />
  701.       AddType text/plain .asc<br />
  702.       <Files *.gz.asc><br />
  703.       <span class="indent">
  704.         RemoveEncoding .gz<br />
  705.       </span>
  706.       </Files>
  707.     </code></p></div>
  708.  
  709.     <p>This will cause <code>foo.gz</code> to be marked as being
  710.     encoded with the gzip method, but <code>foo.gz.asc</code> as an
  711.     unencoded plaintext file.</p>
  712.  
  713.     <div class="note"><h3>Note</h3>
  714.       <p><code class="directive">RemoveEncoding</code> directives are processed
  715.       <em>after</em> any <code class="directive"><a href="#addencoding">AddEncoding</a></code>
  716.       directives, so it is possible they may undo the effects of the latter
  717.       if both occur within the same directory configuration.</p>
  718.     </div>
  719.  
  720.     <p>The <var>extension</var> argument is case-insensitive, and can
  721.     be specified with or without a leading dot.</p>
  722.  
  723. </div>
  724. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  725. <div class="directive-section"><h2><a name="RemoveHandler" id="RemoveHandler">RemoveHandler</a> <a name="removehandler" id="removehandler">Directive</a></h2>
  726. <table class="directive">
  727. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Removes any handler associations for a set of file
  728. extensions</td></tr>
  729. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>RemoveHandler <var>extension</var> [<var>extension</var>]
  730. ...</code></td></tr>
  731. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>virtual host, directory, .htaccess</td></tr>
  732. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  733. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  734. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  735. </table>
  736.     <p>The <code class="directive">RemoveHandler</code> directive removes any
  737.     handler associations for files with the given extensions. This allows
  738.     <code>.htaccess</code> files in subdirectories to undo any
  739.     associations inherited from parent directories or the server
  740.     config files. An example of its use might be:</p>
  741.  
  742.     <div class="example"><h3>/foo/.htaccess:</h3><p><code>
  743.       AddHandler server-parsed .html
  744.     </code></p></div>
  745.  
  746.     <div class="example"><h3>/foo/bar/.htaccess:</h3><p><code>
  747.       RemoveHandler .html
  748.     </code></p></div>
  749.  
  750.     <p>This has the effect of returning <code>.html</code> files in
  751.     the <code>/foo/bar</code> directory to being treated as normal
  752.     files, rather than as candidates for parsing (see the <code class="module"><a href="../mod/mod_include.html">mod_include</a></code> module).</p>
  753.  
  754.     <p>The <var>extension</var> argument is case-insensitive, and can
  755.     be specified with or without a leading dot.</p>
  756.  
  757. </div>
  758. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  759. <div class="directive-section"><h2><a name="RemoveInputFilter" id="RemoveInputFilter">RemoveInputFilter</a> <a name="removeinputfilter" id="removeinputfilter">Directive</a></h2>
  760. <table class="directive">
  761. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Removes any input filter associations for a set of file
  762. extensions</td></tr>
  763. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>RemoveInputFilter <var>extension</var> [<var>extension</var>]
  764. ...</code></td></tr>
  765. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>virtual host, directory, .htaccess</td></tr>
  766. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  767. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  768. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  769. <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>RemoveInputFilter is only available in Apache 2.0.26 and
  770. later.</td></tr>
  771. </table>   
  772.     <p>The <code class="directive">RemoveInputFilter</code> directive removes any
  773.     input filter associations for files with the given extensions.
  774.     This allows <code>.htaccess</code> files in subdirectories to
  775.     undo any associations inherited from parent directories or the
  776.     server config files.</p>
  777.  
  778.     <p>The <var>extension</var> argument is case-insensitive, and can
  779.     be specified with or without a leading dot.</p>
  780.  
  781. <h3>See also</h3>
  782. <ul>
  783. <li><code class="directive"><a href="#addinputfilter">AddInputFilter</a></code></li>
  784. <li><code class="directive"><a href="../mod/core.html#setinputfilter">SetInputFilter</a></code></li>
  785. </ul>
  786. </div>
  787. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  788. <div class="directive-section"><h2><a name="RemoveLanguage" id="RemoveLanguage">RemoveLanguage</a> <a name="removelanguage" id="removelanguage">Directive</a></h2>
  789. <table class="directive">
  790. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Removes any language associations for a set of file
  791. extensions</td></tr>
  792. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>RemoveLanguage <var>extension</var> [<var>extension</var>]
  793. ...</code></td></tr>
  794. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>virtual host, directory, .htaccess</td></tr>
  795. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  796. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  797. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  798. <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>RemoveLanguage is only available in Apache 2.0.24 and
  799. later.</td></tr>
  800. </table>
  801.     <p>The <code class="directive">RemoveLanguage</code> directive removes any
  802.     language associations for files with the given extensions. This
  803.     allows <code>.htaccess</code> files in subdirectories to undo
  804.     any associations inherited from parent directories or the
  805.     server config files.</p>
  806.  
  807.     <p>The <var>extension</var> argument is case-insensitive, and can
  808.     be specified with or without a leading dot.</p>
  809.  
  810. </div>
  811. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  812. <div class="directive-section"><h2><a name="RemoveOutputFilter" id="RemoveOutputFilter">RemoveOutputFilter</a> <a name="removeoutputfilter" id="removeoutputfilter">Directive</a></h2>
  813. <table class="directive">
  814. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Removes any output filter associations for a set of file
  815. extensions</td></tr>
  816. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>RemoveOutputFilter <var>extension</var> [<var>extension</var>]
  817. ...</code></td></tr>
  818. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>virtual host, directory, .htaccess</td></tr>
  819. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  820. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  821. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  822. <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>RemoveOutputFilter is only available in Apache 2.0.26 and
  823. later.</td></tr>
  824. </table>    
  825.     <p>The <code class="directive">RemoveOutputFilter</code> directive removes any
  826.     output filter associations for files with the given extensions.
  827.     This allows <code>.htaccess</code> files in subdirectories to
  828.     undo any associations inherited from parent directories or the
  829.     server config files.</p>
  830.  
  831.     <p>The <var>extension</var> argument is case-insensitive, and can
  832.     be specified with or without a leading dot.</p>
  833.  
  834.     <div class="example"><h3>Example</h3><p><code>
  835.       RemoveOutputFilter shtml
  836.     </code></p></div>
  837.  
  838. <h3>See also</h3>
  839. <ul>
  840. <li><code class="directive"><a href="#addoutputfilter">AddOutputFilter</a></code></li>
  841. </ul>
  842. </div>
  843. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  844. <div class="directive-section"><h2><a name="RemoveType" id="RemoveType">RemoveType</a> <a name="removetype" id="removetype">Directive</a></h2>
  845. <table class="directive">
  846. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Removes any content type associations for a set of file
  847. extensions</td></tr>
  848. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>RemoveType <var>extension</var> [<var>extension</var>]
  849. ...</code></td></tr>
  850. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>virtual host, directory, .htaccess</td></tr>
  851. <tr><th><a href="directive-dict.html#Override">Override:</a></th><td>FileInfo</td></tr>
  852. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  853. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  854. </table>
  855.     <p>The <code class="directive">RemoveType</code> directive removes any MIME
  856.     type associations for files with the given extensions. This allows
  857.     <code>.htaccess</code> files in subdirectories to undo any
  858.     associations inherited from parent directories or the server
  859.     config files. An example of its use might be:</p>
  860.  
  861.     <div class="example"><h3>/foo/.htaccess:</h3><p><code>
  862.       RemoveType .cgi
  863.     </code></p></div>
  864.  
  865.     <p>This will remove any special handling of <code>.cgi</code>
  866.     files in the <code>/foo/</code> directory and any beneath it,
  867.     causing the files to be treated as being of the <code class="directive"><a href="../mod/core.html#defaulttype">DefaultType</a></code>.</p>
  868.  
  869.     <div class="note"><h3>Note</h3>
  870.       <p><code class="directive">RemoveType</code> directives are processed
  871.       <em>after</em> any <code class="directive"><a href="#addtype">AddType</a></code>
  872.       directives, so it is possible they may undo the effects of the
  873.       latter if both occur within the same directory configuration.</p>
  874.     </div>
  875.  
  876.     <p>The <var>extension</var> argument is case-insensitive, and can
  877.     be specified with or without a leading dot.</p>
  878.  
  879. </div>
  880. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  881. <div class="directive-section"><h2><a name="TypesConfig" id="TypesConfig">TypesConfig</a> <a name="typesconfig" id="typesconfig">Directive</a></h2>
  882. <table class="directive">
  883. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>The location of the mime.types file</td></tr>
  884. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>TypesConfig <var>file-path</var></code></td></tr>
  885. <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>TypesConfig conf/mime.types</code></td></tr>
  886. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config</td></tr>
  887. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  888. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_mime</td></tr>
  889. </table>
  890.     <p>The <code class="directive">TypesConfig</code> directive sets the location
  891.     of the MIME types configuration file. <var>File-path</var> is relative
  892.     to the <code class="directive"><a href="../mod/core.html#serverroot">ServerRoot</a></code>. This file sets
  893.     the default list of mappings from filename extensions to content
  894.     types. Most administrators use the provided <code>mime.types</code>
  895.     file, which associates common filename extensions with IANA registered
  896.     content types. The current list is maintained at <a href="http://www.isi.edu/in-notes/iana/assignments/media-types/media-types">http://www.isi.edu/in-notes/iana/assignments/media-types/media-types</a>.
  897.     This simplifies the <code>httpd.conf</code> file by providing the
  898.     majority of media-type definitions, and may be overridden by
  899.     <code class="directive"><a href="#addtype">AddType</a></code> directives as
  900.     needed. You should not edit the <code>mime.types</code> file, because
  901.     it may be replaced when you upgrade your server.</p>
  902.  
  903.     <p>The file contains lines in the format of the arguments to
  904.     an <code class="directive"><a href="#addtype">AddType</a></code> directive:</p>
  905.  
  906.     <div class="example"><p><code>
  907.       <var>MIME-type</var> [<var>extension</var>] ...
  908.     </code></p></div>
  909.  
  910.     <p>The case of the extension does not matter. Blank lines, and lines
  911.     beginning with a hash character (<code>#</code>) are ignored.</p>
  912.  
  913.     <div class="note">
  914.       Please do <strong>not</strong> send requests to the Apache HTTP
  915.       Server Project to add any new entries in the distributed
  916.       <code>mime.types</code> file unless (1) they are already
  917.       registered with IANA, and (2) they use widely accepted,
  918.       non-conflicting filename extensions across platforms.
  919.       <code>category/x-subtype</code> requests will be automatically
  920.       rejected, as will any new two-letter extensions as they will
  921.       likely conflict later with the already crowded language and
  922.       character set namespace.
  923.     </div>
  924.  
  925. <h3>See also</h3>
  926. <ul>
  927. <li><code class="module"><a href="../mod/mod_mime_magic.html">mod_mime_magic</a></code></li>
  928. </ul>
  929. </div>
  930. </div>
  931. <div class="bottomlang">
  932. <p><span>Available Languages: </span><a href="../en/mod/mod_mime.html" title="English"> en </a> |
  933. <a href="../ja/mod/mod_mime.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a></p>
  934. </div><div id="footer">
  935. <p class="apache">Copyright 1999-2004 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>
  936. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
  937. </body></html>