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 / F277856_htaccess.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  16KB  |  380 lines

  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <!-- $Revision: 1.5.2.9 $ -->
  5.  
  6. <!--
  7.  Copyright 2002-2004 The Apache Software Foundation
  8.  
  9.  Licensed under the Apache License, Version 2.0 (the "License");
  10.  you may not use this file except in compliance with the License.
  11.  You may obtain a copy of the License at
  12.  
  13.      http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.  Unless required by applicable law or agreed to in writing, software
  16.  distributed under the License is distributed on an "AS IS" BASIS,
  17.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  See the License for the specific language governing permissions and
  19.  limitations under the License.
  20. -->
  21.  
  22. <manualpage metafile="htaccess.xml.meta">
  23. <parentdocument href="./">How-To / Tutorials</parentdocument>
  24.  
  25. <title>Apache Tutorial: .htaccess files</title>
  26.  
  27. <summary>
  28. <p><code>.htaccess</code> files provide a way to make configuration
  29. changes on a per-directory basis.</p>
  30. </summary>
  31.  
  32. <section id="related"><title>.htaccess files</title>
  33.     <related>
  34.         <modulelist>
  35.             <module>core</module>
  36.             <module>mod_auth</module>
  37.             <module>mod_cgi</module>
  38.             <module>mod_include</module>
  39.             <module>mod_mime</module>
  40.         </modulelist>
  41.  
  42.         <directivelist>
  43.             <directive module="core">AccessFileName</directive>
  44.             <directive module="core">AllowOverride</directive>
  45.             <directive module="core">Options</directive>
  46.             <directive module="mod_mime">AddHandler</directive>
  47.             <directive module="core">SetHandler</directive>
  48.             <directive module="core">AuthType</directive>
  49.             <directive module="core">AuthName</directive>
  50.             <directive module="mod_auth">AuthUserFile</directive>
  51.             <directive module="mod_auth">AuthGroupFile</directive>
  52.             <directive module="core">Require</directive>
  53.         </directivelist>
  54.  
  55.     </related>
  56. </section>
  57.  
  58. <section id="what">
  59. <title>What they are/How to use them</title>
  60.  
  61.     <p><code>.htaccess</code> files (or "distributed configuration files")
  62.     provide a way to make configuration changes on a per-directory basis. A
  63.     file, containing one or more configuration directives, is placed in a
  64.     particular document directory, and the directives apply to that
  65.     directory, and all subdirectories thereof.</p>
  66.  
  67.     <note><title>Note:</title>
  68.       <p>If you want to call your <code>.htaccess</code> file something
  69.       else, you can change the name of the file using the <directive
  70.       module="core">AccessFileName</directive> directive. For example,
  71.       if you would rather call the file <code>.config</code> then you
  72.       can put the following in your server configuration file:</p>
  73.  
  74.       <example>
  75.         AccessFileName .config
  76.       </example>
  77.     </note>
  78.  
  79.     <p>In general, <code>.htaccess</code> files use the same syntax as
  80.     the <a href="../configuring.html#syntax">main configuration
  81.     files</a>.  What you can put in these files is determined by the
  82.     <directive module="core">AllowOverride</directive> directive. This
  83.     directive specifies, in categories, what directives will be
  84.     honored if they are found in a <code>.htaccess</code> file. If a
  85.     directive is permitted in a <code>.htaccess</code> file, the
  86.     documentation for that directive will contain an Override section,
  87.     specifying what value must be in <directive 
  88.     module="core">AllowOverride</directive> in order for that
  89.     directive to be permitted.</p>
  90.  
  91.     <p>For example, if you look at the documentation for the <directive
  92.     module="core">AddDefaultCharset</directive>
  93.     directive, you will find that it is permitted in <code>.htaccess</code>
  94.     files. (See the Context line in the directive summary.) The <a
  95.     href="../mod/directive-dict.html#Context">Override</a> line reads
  96.     <code>FileInfo</code>. Thus, you must have at least
  97.     <code>AllowOverride FileInfo</code> in order for this directive to be
  98.     honored in <code>.htaccess</code> files.</p>
  99.  
  100.     <example><title>Example:</title>
  101.       <table>
  102.         <tr>
  103.           <td><a
  104.           href="../mod/directive-dict.html#Context">Context:</a></td>
  105.           <td>server config, virtual host, directory, .htaccess</td>
  106.         </tr>
  107.  
  108.         <tr>
  109.           <td><a
  110.           href="../mod/directive-dict.html#Override">Override:</a></td>
  111.           <td>FileInfo</td>
  112.         </tr>
  113.       </table>
  114.     </example>
  115.  
  116.     <p>If you are unsure whether a particular directive is permitted in a
  117.     <code>.htaccess</code> file, look at the documentation for that
  118.     directive, and check the Context line for ".htaccess".</p>
  119.     </section>
  120.  
  121.     <section id="when"><title>When (not) to use .htaccess files</title>
  122.  
  123.     <p>In general, you should never use <code>.htaccess</code> files unless
  124.     you don't have access to the main server configuration file. There is,
  125.     for example, a prevailing misconception that user authentication should
  126.     always be done in <code>.htaccess</code> files. This is simply not the
  127.     case. You can put user authentication configurations in the main server
  128.     configuration, and this is, in fact, the preferred way to do
  129.     things.</p>
  130.  
  131.     <p><code>.htaccess</code> files should be used in a case where the
  132.     content providers need to make configuration changes to the server on a
  133.     per-directory basis, but do not have root access on the server system.
  134.     In the event that the server administrator is not willing to make
  135.     frequent configuration changes, it might be desirable to permit
  136.     individual users to make these changes in <code>.htaccess</code> files
  137.     for themselves. This is particularly true, for example, in cases where
  138.     ISPs are hosting multiple user sites on a single machine, and want
  139.     their users to be able to alter their configuration.</p>
  140.  
  141.     <p>However, in general, use of <code>.htaccess</code> files should be
  142.     avoided when possible. Any configuration that you would consider
  143.     putting in a <code>.htaccess</code> file, can just as effectively be
  144.     made in a <directive module="core"
  145.     type="section">Directory</directive> section in your main server 
  146.     configuration file.</p>
  147.  
  148.     <p>There are two main reasons to avoid the use of
  149.     <code>.htaccess</code> files.</p>
  150.  
  151.     <p>The first of these is performance. When <directive 
  152.     module="core">AllowOverride</directive>
  153.     is set to allow the use of <code>.htaccess</code> files, Apache will
  154.     look in every directory for <code>.htaccess</code> files. Thus,
  155.     permitting <code>.htaccess</code> files causes a performance hit,
  156.     whether or not you actually even use them! Also, the
  157.     <code>.htaccess</code> file is loaded every time a document is
  158.     requested.</p>
  159.  
  160.     <p>Further note that Apache must look for <code>.htaccess</code> files
  161.     in all higher-level directories, in order to have a full complement of
  162.     directives that it must apply. (See section on <a href="#how">how
  163.     directives are applied</a>.) Thus, if a file is requested out of a
  164.     directory <code>/www/htdocs/example</code>, Apache must look for the
  165.     following files:</p>
  166.  
  167.    <example>
  168.       /.htaccess<br />
  169.       /www/.htaccess<br />
  170.       /www/htdocs/.htaccess<br />
  171.       /www/htdocs/example/.htaccess
  172.    </example>
  173.  
  174.     <p>And so, for each file access out of that directory, there are 4
  175.     additional file-system accesses, even if none of those files are
  176.     present. (Note that this would only be the case if
  177.     <code>.htaccess</code> files were enabled for <code>/</code>, which
  178.     is not usually the case.)</p>
  179.  
  180.     <p>The second consideration is one of security. You are permitting
  181.     users to modify server configuration, which may result in changes over
  182.     which you have no control. Carefully consider whether you want to give
  183.     your users this privilege. Note also that giving users less
  184.     privileges than they need will lead to additional technical support
  185.     requests. Make sure you clearly tell your users what level of
  186.     privileges you have given them. Specifying exactly what you have set
  187.     <directive module="core">AllowOverride</directive> to, and pointing them
  188.     to the relevant documentation, will save yourself a lot of confusion
  189.     later.</p>
  190.  
  191.     <p>Note that it is completely equivalent to put a <code>.htaccess</code>
  192.     file in a directory <code>/www/htdocs/example</code> containing a
  193.     directive, and to put that same directive in a Directory section
  194.     <code><Directory /www/htdocs/example></code> in your main server
  195.     configuration:</p>
  196.  
  197.     <p><code>.htaccess</code> file in <code>/www/htdocs/example</code>:</p>
  198.  
  199.     <example><title>Contents of .htaccess file in
  200.     <code>/www/htdocs/example</code></title>
  201.         AddType text/example .exm
  202.     </example>
  203.  
  204.     <example><title>Section from your <code>httpd.conf</code>
  205.     file</title>
  206.       <Directory /www/htdocs/example><br />
  207.       <indent>
  208.         AddType text/example .exm<br />
  209.       </indent>
  210.       </Directory>
  211.     </example>
  212.  
  213.     <p>However, putting this configuration in your server configuration
  214.     file will result in less of a performance hit, as the configuration is
  215.     loaded once when Apache starts, rather than every time a file is
  216.     requested.</p>
  217.  
  218.     <p>The use of <code>.htaccess</code> files can be disabled completely
  219.     by setting the <directive module="core">AllowOverride</directive>
  220.     directive to <code>none</code>:</p>
  221.  
  222.     <example>
  223.       AllowOverride None
  224.     </example>
  225. </section>
  226.  
  227. <section id="how"><title>How directives are applied</title>
  228.  
  229.     <p>The configuration directives found in a <code>.htaccess</code> file
  230.     are applied to the directory in which the <code>.htaccess</code> file
  231.     is found, and to all subdirectories thereof. However, it is important
  232.     to also remember that there may have been <code>.htaccess</code> files
  233.     in directories higher up. Directives are applied in the order that they
  234.     are found. Therefore, a <code>.htaccess</code> file in a particular
  235.     directory may override directives found in <code>.htaccess</code> files
  236.     found higher up in the directory tree. And those, in turn, may have
  237.     overridden directives found yet higher up, or in the main server
  238.     configuration file itself.</p>
  239.  
  240.     <p>Example:</p>
  241.  
  242.     <p>In the directory <code>/www/htdocs/example1</code> we have a
  243.     <code>.htaccess</code> file containing the following:</p>
  244.  
  245.     <example>
  246.        Options +ExecCGI
  247.     </example>
  248.  
  249.     <p>(Note: you must have "<code>AllowOverride Options</code>" in effect
  250.     to permit the use of the "<directive
  251.     module="core">Options</directive>" directive in
  252.     <code>.htaccess</code> files.)</p>
  253.  
  254.     <p>In the directory <code>/www/htdocs/example1/example2</code> we have
  255.     a <code>.htaccess</code> file containing:</p>
  256.  
  257.     <example>
  258.        Options Includes
  259.     </example>
  260.  
  261.     <p>Because of this second <code>.htaccess</code> file, in the directory
  262.     <code>/www/htdocs/example1/example2</code>, CGI execution is not
  263.     permitted, as only <code>Options Includes</code> is in effect, which
  264.     completely overrides any earlier setting that may have been in
  265.     place.</p>
  266. </section>
  267.  
  268. <section id="auth"><title>Authentication example</title>
  269.  
  270.     <p>If you jumped directly to this part of the document to find out how
  271.     to do authentication, it is important to note one thing. There is a
  272.     common misconception that you are required to use
  273.     <code>.htaccess</code> files in order to implement password
  274.     authentication. This is not the case. Putting authentication directives
  275.     in a <directive module="core" type="section">Directory</directive>
  276.     section, in your main server configuration file, is the preferred way
  277.     to implement this, and <code>.htaccess</code> files should be used only
  278.     if you don't have access to the main server configuration file. See <a 
  279.     href="#when">above</a> for a discussion of when you should and should
  280.     not use <code>.htaccess</code> files.</p>
  281.  
  282.     <p>Having said that, if you still think you need to use a
  283.     <code>.htaccess</code> file, you may find that a configuration such as
  284.     what follows may work for you.</p>
  285.  
  286.     <p>You must have "<code>AllowOverride AuthConfig</code>" in effect for
  287.     these directives to be honored.</p>
  288.  
  289.     <p><code>.htaccess</code> file contents:</p>
  290.  
  291.     <example>
  292.           AuthType Basic<br />
  293.            AuthName "Password Required"<br />
  294.            AuthUserFile /www/passwords/password.file<br />
  295.            AuthGroupFile /www/passwords/group.file<br />
  296.            Require Group admins
  297.     </example>
  298.  
  299.     <p>Note that <code>AllowOverride AuthConfig</code> must be in effect
  300.     for these directives to have any effect.</p>
  301.  
  302.     <p>Please see the <a href="auth.html">authentication tutorial</a> for a
  303.     more complete discussion of authentication and authorization.</p>
  304. </section>
  305.  
  306. <section id="ssi"><title>Server Side Includes example</title>
  307.  
  308.     <p>Another common use of <code>.htaccess</code> files is to enable
  309.     Server Side Includes for a particular directory. This may be done with
  310.     the following configuration directives, placed in a
  311.     <code>.htaccess</code> file in the desired directory:</p>
  312.  
  313.     <example>
  314.        Options +Includes<br />
  315.        AddType text/html shtml<br />
  316.        AddHandler server-parsed shtml
  317.     </example>
  318.  
  319.     <p>Note that <code>AllowOverride Options</code> and <code>AllowOverride
  320.     FileInfo</code> must both be in effect for these directives to have any
  321.     effect.</p>
  322.  
  323.     <p>Please see the <a href="ssi.html">SSI tutorial</a> for a more
  324.     complete discussion of server-side includes.</p>
  325. </section>
  326.  
  327. <section id="cgi"><title>CGI example</title>
  328.  
  329.     <p>Finally, you may wish to use a <code>.htaccess</code> file to permit
  330.     the execution of CGI programs in a particular directory. This may be
  331.     implemented with the following configuration:</p>
  332.  
  333.     <example>
  334.        Options +ExecCGI<br />
  335.        AddHandler cgi-script cgi pl
  336.     </example>
  337.  
  338.     <p>Alternately, if you wish to have all files in the given directory be
  339.     considered to be CGI programs, this may be done with the following
  340.     configuration:</p>
  341.  
  342.     <example>
  343.        Options +ExecCGI<br />
  344.        SetHandler cgi-script
  345.     </example>
  346.  
  347.     <p>Note that <code>AllowOverride Options</code> and <code>AllowOverride
  348.     FileInfo</code> must both be in effect for these directives to have any
  349.     effect.</p>
  350.  
  351.     <p>Please see the <a href="cgi.html">CGI tutorial</a> for a more
  352.     complete discussion of CGI programming and configuration.</p>
  353.  
  354. </section>
  355.  
  356. <section id="troubleshoot"><title>Troubleshooting</title>
  357.  
  358.     <p>When you put configuration directives in a <code>.htaccess</code>
  359.     file, and you don't get the desired effect, there are a number of
  360.     things that may be going wrong.</p>
  361.  
  362.     <p>Most commonly, the problem is that <directive
  363.     module="core">AllowOverride</directive> is not
  364.     set such that your configuration directives are being honored. Make
  365.     sure that you don't have a <code>AllowOverride None</code> in effect
  366.     for the file scope in question. A good test for this is to put garbage
  367.     in your <code>.htaccess</code> file and reload. If a server error is
  368.     not generated, then you almost certainly have <code>AllowOverride
  369.     None</code> in effect.</p>
  370.  
  371.     <p>If, on the other hand, you are getting server errors when trying to
  372.     access documents, check your Apache error log. It will likely tell you
  373.     that the directive used in your <code>.htaccess</code> file is not
  374.     permitted. Alternately, it may tell you that you had a syntax error,
  375.     which you will then need to fix.</p>
  376.  
  377. </section>
  378.  
  379. </manualpage>
  380.