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