+++ /dev/null
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta name="generator" content="HTML Tidy, see www.w3.org" />
-
- <title>Definitions of terms used to describe Apache
- directives</title>
- </head>
- <!-- Background white, links blue (unvisited), navy (visited), red (active) -->
-
- <body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
- vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
-
- <h1 align="CENTER">Terms Used to Describe Apache
- Directives</h1>
-
- <p>Each Apache configuration directive is described using a
- common format that looks like this:</p>
-
- <dl>
- <dd><a href="#Syntax" rel="Help"><strong>Syntax:</strong></a>
- <em>directive-name</em> <em>some args</em><br />
- <a href="#Default" rel="Help"><strong>Default:</strong></a>
- <samp><em>directive-name default-value</em></samp><br />
- <a href="#Context" rel="Help"><strong>Context:</strong></a>
- <em>context-list</em><br />
- <a href="#Override"
- rel="Help"><strong>Override:</strong></a>
- <em>override</em><br />
- <a href="#Status" rel="Help"><strong>Status:</strong></a>
- <em>status</em><br />
- <a href="#Module" rel="Help"><strong>Module:</strong></a>
- <em>module-name</em><br />
- <a href="#Compatibility"
- rel="Help"><strong>Compatibility:</strong></a>
- <em>compatibility notes</em><br />
- <a href="#Deprecated"
- rel="Help"><strong>Deprecated:</strong></a> <em>see
- other</em></dd>
- </dl>
-
- <p>Each of the directive's attributes, complete with possible
- values where possible, are described in this document.</p>
-
- <h2>Directive Terms</h2>
-
- <ul>
- <li><a href="#Syntax">Syntax</a></li>
-
- <li><a href="#Default">Default</a></li>
-
- <li><a href="#Context">Context</a></li>
-
- <li><a href="#Override">Override</a></li>
-
- <li><a href="#Status">Status</a></li>
-
- <li><a href="#Module">Module</a></li>
-
- <li><a href="#Compatibility">Compatibility</a></li>
-
- <li><a href="#Deprecated">Deprecated</a></li>
- </ul>
- <hr />
-
- <h2><a id="Syntax" name="Syntax">Syntax</a></h2>
-
- <p>This indicates the format of the directive as it would
- appear in a configuration file. This syntax is extremely
- directive-specific, and is described in detail in the
- directive's definition. Generally, the directive name is
- followed by a series of one or more space-separated arguments.
- If an argument contains a space, the argument must be enclosed
- in double quotes. Optional arguments are enclosed in square
- brackets. Where an argument can take on more than one possible
- value, the possible values are separated by vertical bars "|".
- Literal text is presented in the default font, while
- argument-types for which substitution is necessary are
- <em>emphasized</em>. Directives which can take a variable
- number of arguments will end in "..." indicating that the last
- argument is repeated.</p>
-
- <p>Directives use a great number of different argument types. A
- few common ones are defined below.</p>
-
- <dl>
- <dt><em>URL</em></dt>
-
- <dd>A complete Uniform Resource Locator including a scheme,
- hostname, and optional pathname as in
- <code>http://www.example.com/path/to/file.html</code></dd>
-
- <dt><em>URL-path</em></dt>
-
- <dd>The part of a <em>url</em> which follows the scheme and
- hostname as in <code>/path/to/file.html</code>. The
- <em>url-path</em> represents a web-view of a resource, as
- opposed to a file-system view.</dd>
-
- <dt><em>file-path</em></dt>
-
- <dd>The path to a file in the local file-system beginning
- with the root directory as in
- <code>/usr/local/apache/htdocs/path/to/file.html</code>.
- Unless otherwise specified, a <em>file-path</em> which does
- not begin with a slash will be treated as relative to the <a
- href="core.html#serverroot">ServerRoot</a>.</dd>
-
- <dt><em>directory-path</em></dt>
-
- <dd>The path to a directory in the local file-system
- beginning with the root directory as in
- <code>/usr/local/apache/htdocs/path/to/</code>.</dd>
-
- <dt><em>filename</em></dt>
-
- <dd>The name of a file with no accompanying path information
- as in <code>file.html</code>.</dd>
-
- <dt><em>regex</em></dt>
-
- <dd>A regular expression, which is a way of describing a
- pattern to match in text. The directive definition will
- specify what the <em>regex</em> is matching against.</dd>
-
- <dt><em>extension</em></dt>
-
- <dd>In general, this is the part of the <em>filename</em>
- which follows the last dot. However, Apache recognizes
- multiple filename extensions, so if a <em>filename</em>
- contains more than one dot, each dot-separated part of the
- filename following the first dot is an <em>extension</em>.
- For example, the <em>filename</em> <code>file.html.en</code>
- contains two extensions: <code>.html</code> and
- <code>.en</code>. For Apache directives, you may specify
- <em>extension</em>s with or without the leading dot. In
- addition, <em>extension</em>s are not case sensitive.</dd>
-
- <dt><em>MIME-type</em></dt>
-
- <dd>A method of describing the format of a file which
- consists of a major format type and a minor format type,
- separated by a slash as in <code>text/html</code>.</dd>
-
- <dt><em>env-variable</em></dt>
-
- <dd>The name of an <a href="../env.html">environment
- variable</a> defined in the Apache configuration process.
- Note this is not necessarily the same as an operating system
- environment variable. See the <a
- href="../env.html">environment variable documentation</a> for
- more details.</dd>
- </dl>
- <hr />
-
- <h2><a id="Default" name="Default">Default</a></h2>
-
- <p>If the directive has a default value (<em>i.e.</em>, if you
- omit it from your configuration entirely, the Apache Web server
- will behave as though you set it to a particular value), it is
- described here. If there is no default value, this section
- should say "<em>None</em>". Note that the default listed here
- is not necessarily the same as the value the directive takes in
- the default httpd.conf distributed with the server.</p>
- <hr />
-
- <h2><a id="Context" name="Context">Context</a></h2>
-
- <p>This indicates where in the server's configuration files the
- directive is legal. It's a comma-separated list of one or more
- of the following values:</p>
-
- <dl>
- <dt><strong>server config</strong></dt>
-
- <dd>This means that the directive may be used in the server
- configuration files (<em>e.g.</em>, <samp>httpd.conf</samp>,
- <samp>srm.conf</samp>, and <samp>access.conf</samp>), but
- <strong>not</strong> within any
- <samp><VirtualHost></samp> or <Directory>
- containers. It is not allowed in <samp>.htaccess</samp> files
- at all.</dd>
-
- <dt><strong>virtual host</strong></dt>
-
- <dd>This context means that the directive may appear inside
- <samp><VirtualHost></samp> containers in the server
- configuration files.</dd>
-
- <dt><strong>directory</strong></dt>
-
- <dd>A directive marked as being valid in this context may be
- used inside <samp><Directory></samp>,
- <samp><Location></samp>, and <samp><Files></samp>
- containers in the server configuration files, subject to the
- restrictions outlined in <a href="../sections.html">How
- Directory, Location and Files sections work</a>.</dd>
-
- <dt><strong>.htaccess</strong></dt>
-
- <dd>If a directive is valid in this context, it means that it
- can appear inside <em>per</em>-directory
- <samp>.htaccess</samp> files. It may not be processed, though
- depending upon the <a href="#Override"
- rel="Help">overrides</a> currently active.</dd>
- </dl>
-
- <p>The directive is <em>only</em> allowed within the designated
- context; if you try to use it elsewhere, you'll get a
- configuration error that will either prevent the server from
- handling requests in that context correctly, or will keep the
- server from operating at all -- <em>i.e.</em>, the server won't
- even start.</p>
-
- <p>The valid locations for the directive are actually the
- result of a Boolean OR of all of the listed contexts. In other
- words, a directive that is marked as being valid in
- "<samp>server config, .htaccess</samp>" can be used in the
- <samp>httpd.conf</samp> file and in <samp>.htaccess</samp>
- files, but not within any <Directory> or
- <VirtualHost> containers.</p>
- <hr />
-
- <h2><a id="Override" name="Override">Override</a></h2>
-
- <p>This directive attribute indicates which configuration
- override must be active in order for the directive to be
- processed when it appears in a <samp>.htaccess</samp> file. If
- the directive's <a href="#Context" rel="Help">context</a>
- doesn't permit it to appear in <samp>.htaccess</samp> files,
- this attribute should say "<em>Not applicable</em>".</p>
-
- <p>Overrides are activated by the <a
- href="core.html#allowoverride"
- rel="Help"><samp>AllowOverride</samp></a> directive, and apply
- to a particular scope (such as a directory) and all
- descendants, unless further modified by other
- <samp>AllowOverride</samp> directives at lower levels. The
- documentation for that directive also lists the possible
- override names available.</p>
- <hr />
-
- <h2><a id="Status" name="Status">Status</a></h2>
-
- <p>This indicates how tightly bound into the Apache Web server
- the directive is; in other words, you may need to recompile the
- server with an enhanced set of modules in order to gain access
- to the directive and its functionality. Possible values for
- this attribute are:</p>
-
- <dl>
- <dt><strong>Core</strong></dt>
-
- <dd>If a directive is listed as having "Core" status, that
- means it is part of the innermost portions of the Apache Web
- server, and is always available.</dd>
-
- <dt><strong>MPM</strong></dt>
-
- <dd>A directive labeled as having "MPM" status is provided by
- a <a href="../mpm.html">Multi-Processing Module</a>. This
- type of directive will be available if and only if you are
- using one of the MPMs listed on the <a
- href="#Module">Module</a> line of the directive
- definition.</dd>
-
- <dt><strong>Base</strong></dt>
-
- <dd>A directive labeled as having "Base" status is supported
- by one of the standard Apache modules which is compiled into
- the server by default, and is therefore normally available
- unless you've taken steps to remove the module from your
- configuration.</dd>
-
- <dt><strong>Extension</strong></dt>
-
- <dd>A directive with "Extension" status is provided by one of
- the modules included with the Apache server kit, but the
- module isn't normally compiled into the server. To enable the
- directive and its functionality, you will need to change the
- server build configuration files and re-compile Apache.</dd>
-
- <dt><strong>Experimental</strong></dt>
-
- <dd>"Experimental" status indicates that the directive is
- available as part of the Apache kit, but you're on your own
- if you try to use it. The directive is being documented for
- completeness, and is not necessarily supported. The module
- which provides the directive may or may not be compiled in by
- default; check the top of the page which describes the
- directive and its module to see if it remarks on the
- availability.</dd>
- </dl>
- <hr />
-
- <h2><a id="Module" name="Module">Module</a></h2>
-
- <p>This quite simply lists the name of the source module which
- defines the directive.</p>
- <hr />
-
- <h2><a id="Compatibility"
- name="Compatibility">Compatibility</a></h2>
-
- <p>If the directive wasn't part of the original Apache version
- 1 distribution, the version in which it was introduced should
- be listed here. If the directive has the same name as one from
- the NCSA HTTPd server, any inconsistencies in behavior between
- the two should also be mentioned. Otherwise, this attribute
- should say "<em>No compatibility issues.</em>"</p>
- <hr />
-
- <h2><a id="Deprecated" name="Deprecated">Deprecated</a></h2>
-
- <p>If this directive is eliminated since the Apache version 1
- distribution, the directive or option that replaces the
- behavior should be cited here. In general, directives,
- features, and options are only deprecated to minimize debugging
- of conflicting features, or if the feature can only continue to
- be supported in an alternate manner.</p>
- <!--#include virtual="footer.html" -->
- </body>
-</html>
-
--- /dev/null
+<?xml version="1.0" encoding="iso-2022-jp"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>Apache \e$B$N%G%#%l%/%F%#%V$N2r@b$K;H$o$l$kMQ8l\e(B</title>
+ </head>
+ <!-- English revision: 1.14 -->
+ <!-- Background white, links blue (unvisited), navy (visited), red (active) -->
+
+ <body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#000080"
+ alink="#FF0000">
+ <!--#include virtual="header.html" -->
+
+ <h1 align="center">Apache
+ \e$B$N%G%#%l%/%F%#%V$N2r@b$K;H$o$l$kMQ8l\e(B</h1>
+
+ <p>\e$B$=$l$>$l$N\e(B Apache
+ \e$B%G%#%l%/%F%#%V$O!"<!$N$h$&$J6&DL$N=q<0$K$h$C$F5-=R$5$l$^$9\e(B:</p>
+
+ <dl>
+ <dd><a href="#Syntax" rel="Help"><strong>\e$B9=J8\e(B:</strong></a>
+ <em>directive-name</em> <em>some args</em><br />
+ <a href="#Default"
+ rel="Help"><strong>\e$B%G%U%)%k%H\e(B:</strong></a>
+ <samp><em>directive-name default-value</em></samp><br />
+ <a href="#Context"
+ rel="Help"><strong>\e$B%3%s%F%-%9%H\e(B:</strong></a>
+ <em>context-list</em><br />
+ <a href="#Override"
+ rel="Help"><strong>\e$B>e=q$-\e(B:</strong></a>
+ <em>override</em><br />
+ <a href="#Status"
+ rel="Help"><strong>\e$B%9%F!<%?%9\e(B:</strong></a>
+ <em>status</em><br />
+ <a href="#Module"
+ rel="Help"><strong>\e$B%b%8%e!<%k\e(B:</strong></a>
+ <em>module-name</em><br />
+ <a href="#Compatibility"
+ rel="Help"><strong>\e$B8_49@-\e(B:</strong></a> <em>compatibility
+ notes</em><br />
+ <a href="#Deprecated"
+ rel="Help"><strong>\e$BHs?d>)\e(B:</strong></a> <em>see
+ other</em></dd>
+ </dl>
+
+ <p>
+ \e$B$3$N%I%-%e%a%s%H$G$O%G%#%l%/%F%#%V$N$=$l$>$l$NB0@-$,@bL@$5$l\e(B
+ \e$B$F$$$^$9!#2DG=$J>l9g$O%G%#%l%/%F%#%V$,<h$jF@$k$9$Y$F$NCM$b=q$+$l$F$$$^$9!#\e(B</p>
+
+ <h2>\e$B%G%#%l%/%F%#%V$NMQ8l\e(B</h2>
+
+ <ul>
+ <li><a href="#Syntax">\e$B9=J8\e(B</a></li>
+
+ <li><a href="#Default">\e$B%G%U%)%k%H\e(B</a></li>
+
+ <li><a href="#Context">\e$B%3%s%F%-%9%H\e(B</a></li>
+
+ <li><a href="#Override">\e$B>e=q$-\e(B</a></li>
+
+ <li><a href="#Status">\e$B%9%F!<%?%9\e(B</a></li>
+
+ <li><a href="#Module">\e$B%b%8%e!<%k\e(B</a></li>
+
+ <li><a href="#Compatibility">\e$B8_49@-\e(B</a></li>
+
+ <li><a href="#Deprecated">Deprecated</a></li>
+ </ul>
+ <hr />
+
+ <h2><a id="Syntax" name="Syntax">\e$B9=J8\e(B</a></h2>
+
+ <p>\e$B@_Dj%U%!%$%kCf$N%G%#%l%/%F%#%V$N=q<0$r<($7$^$9!#\e(B
+ \e$B$3$N9=J8$O%G%#%l%/%F%#%VFCM-$J$N$G!">\:Y$O%G%#%l%/%F%#%V$N@bL@$r\e(B
+ \e$B;2>H$7$F$/$@$5$$!#0lHLE*$K!"%G%#%l%/%F%#%VL>$N8e$K$O\e(B
+ \e$B6uGr$K$h$jJ,3d$5$l$?$$$/$D$+$N0z?t$,B3$-$^$9!#\e(B
+ \e$B0z?t$,6uGr$r4^$`$H$-$OFs=E0zMQId\e(B (\e$BLuCm\e(B: ")
+ \e$B$G0O$^$l$F$$$^$9!#\e(B \e$B%*%W%7%g%J%k$J0z?t$O3g8L\e(B
+ (\e$BLuCm\e(B: []) \e$B$G0O$^$l$F$$$^$9!#\e(B
+ \e$B0z?t$,J#?t$NCM$r<h$jF@$k>l9g$O!"$=$l$i$NCM$O?bD>$NK@\e(B "|"
+ \e$B$G\e(B \e$BJ,3d$5$l$F$$$^$9!#\e(B
+ \e$BJQ99$5$l$J$$%F%-%9%H$O%G%U%)%k%H$N%U%)%s%H$GI=<($5$l!"CV49$NI,MW$J\e(B
+ \e$B0z?t$O\e(B<em>\e$B6/D4$5$l$F\e(B</em>\e$BI=<($5$l$^$9!#\e(B
+ \e$B0z?t$N?t$,JQ$o$k%G%#%l%/%F%#%V$O:G8e$N\e(B
+ \e$B0z?t$,7+$jJV$5$l$k$3$H$r<($9$?$a$K\e(B "..."
+ \e$B$G=*$o$j$^$9!#\e(B</p>
+
+ <p>
+ \e$B%G%#%l%/%F%#%V$OB?$/$N0c$&7?$N0z?t$r$H$j$^$9!#$$$/$D$+!"NI$/\e(B
+ \e$B;H$o$l$k$b$N$r0J2<$GDj5A$7$^$9!#\e(B</p>
+
+ <dl>
+ <dt><em>URL</em></dt>
+
+ <dd><code>http://www.example.com/path/to/file.html</code>
+ \e$B$N$h$&$K!"\e(B
+ \e$B%9%-!<%`!"%[%9%HL>!"%Q%9L>\e(B(\e$B>JN,2DG=\e(B)\e$B$r4^$s$G$$$k40A4$J\e(B
+ Uniform Resource Locator\e$B!#\e(B</dd>
+
+ <dt><em>URL-path</em></dt>
+
+ <dd><code>/path/to/file.html</code> \e$B$N$h$&$K!"%9%-!<%`$H\e(B
+ \e$B%[%9%HL>$N8e$KB3$/\e(B <em>url</em>
+ \e$B$N0lIt!#\e(B<em>url-path</em> \e$B$O\e(B
+ \e$B%U%!%$%k%7%9%F%`$+$i$N;kE@$G$O$J$/!"\e(B
+ \e$B%&%'%V$+$i$N;kE@$G%j%=!<%9$rI=8=$7$^$9!#\e(B</dd>
+
+ <dt><em>file-path</em></dt>
+
+ <dd><code>/usr/local/apache/htdocs/path/to/file.html</code>
+ \e$B$N$h$&$K!"\e(B
+ \e$B%k!<%H%G%#%l%/%H%j$+$i;O$^$k%m!<%+%k$N%U%!%$%k%7%9%F%`>e$N%U%!%$%k$X$N%Q%9!#\e(B
+ \e$BDL>o!"%9%i%C%7%e$G;O$^$i$J$$\e(B <em>file-path</em> \e$B$O\e(B <a
+ href="core.html#serverroot">ServerRoot</a>
+ \e$B$+$i$NAjBP%Q%9$H$7$F\e(B \e$B07$o$l$^$9!#\e(B</dd>
+
+ <dt><em>directory-path</em></dt>
+
+ <dd><code>/usr/local/apache/htdocs/path/to/</code>
+ \e$B$N$h$&$K!"\e(B
+ \e$B%k!<%H%G%#%l%/%H%j$+$i;O$^$k%m!<%+%k$N%U%!%$%k%7%9%F%`$N%G%#%l%/%H%j$X$N\e(B
+ \e$B%Q%9!#\e(B</dd>
+
+ <dt><em>filename</em></dt>
+
+ <dd><code>file.html</code> \e$B$N$h$&$K!"%Q%9>pJs$NIU$$$F$$$J$$\e(B
+ \e$B%U%!%$%kL>!#\e(B</dd>
+
+ <dt><em>regex</em></dt>
+
+ <dd>\e$B@55,I=8=$G!"\e(B
+ \e$B%F%-%9%H$N%^%C%A$N%Q%?!<%s$rI=$7$^$9!#%G%#%l%/%F%#%V$NDj5A$,\e(B
+ <em>regex</em>
+ \e$B$,2?$KBP$7$F%^%C%A$r9T$J$&$N$+$r;XDj$7$^$9!#\e(B</dd>
+
+ <dt><em>extension</em></dt>
+
+ <dd>\e$B0lHLE*$K$O\e(B <em>filename</em>
+ \e$B$N:G8e$N%I%C%H$N8e$NItJ,$G$9!#\e(B \e$B$7$+$7!"\e(BApache
+ \e$B$OJ#?t$N%U%!%$%k$N3HD%;R$rG'<1$7$^$9$N$G!"\e(B<em>filename</em>
+ \e$B$KJ#?t$N%I%C%H$,$"$k$H!":G=i$N%I%C%H$N8e$N!"$=$l$>$l$N%I%C%H$GJ,N%$5$l$?ItJ,$,\e(B
+ <em>extension</em> (\e$BLuCm\e(B: \e$B3HD%;R\e(B)
+ \e$B$K$J$j$^$9!#Nc$($P!"\e(B<em>filename</em>
+ <code>file.html.en</code>
+ \e$B$K$OFs$D$N3HD%;R$,$"$j$^$9!#\e(B<code>.html</code> \e$B$H\e(B
+ <code>.en</code> \e$B$G$9!#\e(BApache
+ \e$B$N%G%#%l%/%F%#%V$G$O!"\e(B<em>extension</em>
+ \e$B$O%I%C%HIU$-$G$bL5$7$G$b;XDj$G$-$^$9!#$5$i$K!"\e(B<em>extension</em>
+ \e$B$O\e(B \e$BBgJ8;z>.J8;z$r6hJL$7$^$;$s!#\e(B</dd>
+
+ <dt><em>MIME-type</em></dt>
+
+ <dd><code>text/html</code> \e$B$N$h$&$K!"%9%i%C%7%e$GJ,N%$5$l$?\e(B
+ \e$B<g%U%)!<%^%C%H$HI{%U%)!<%^%C%H$K$h$C$F%U%!%$%k$N7A<0$r\e(B
+ \e$BI=$9J}K!$G$9!#\e(B</dd>
+
+ <dt><em>env-variable</em></dt>
+
+ <dd>Apache \e$B$N@_Dj$K$h$jDj5A$5$l$k\e(B <a
+ href="../env.html">\e$B4D6-JQ?t\e(B</a>\e$B$NL>A0$G$9!#$3$l$O%*%Z%l!<%F%#%s%0%7%9%F%`$N\e(B
+ \e$B4D6-JQ?t$HF1$8$H$O8B$i$J$$$3$H$KCm0U$7$F$/$@$5$$!#>\:Y$O\e(B <a
+ href="../env.html">\e$B4D6-JQ?t$N@bL@\e(B</a>\e$B$r;2>H$7$F$/$@$5$$!#\e(B</dd>
+ </dl>
+ <hr />
+
+ <h2><a id="Default" name="Default">\e$B%G%U%)%k%H\e(B</a></h2>
+
+ <p>\e$B%G%#%l%/%F%#%V$K%G%U%)%k%HCM\e(B
+ (<em>\e$B$9$J$o$A\e(B</em>\e$B!"@_Dj%U%!%$%k$+$i\e(B
+ \e$B>JN,$5$l$F$$$F$b!"\e(BApache
+ \e$B%&%'%V%5!<%P$OFCDj$NCM$K@_Dj$5$l$F$$$k$+$N$h$&$K\e(B
+ \e$BF0:n$7$^$9\e(B) \e$B$,$"$k>l9g$O$3$3$K5-=R$5$l$^$9!#\e(B
+ \e$B%G%U%)%k%HCM$NL5$$>l9g!"$3$3$O\e(B "<em>None</em>" \e$B$H\e(B
+ \e$B=q$+$l$^$9!#$3$3$G=q$+$l$F$$$k%G%U%)%k%H$O%5!<%P$H6&$KG[I[$5$l$F$$$k\e(B
+ \e$B%G%U%)%k%H$N\e(B httpd.conf
+ \e$BFb$K=q$+$l$F$$$k%G%#%l%/%F%#%V$NCM$H\e(B
+ \e$B0c$&2DG=@-$,$"$k$3$H$KCm0U$7$F$/$@$5$$!#\e(B</p>
+ <hr />
+
+ <h2><a id="Context" name="Context">\e$B%3%s%F%-%9%H\e(B</a></h2>
+
+ <p>
+ \e$B$3$l$O!"%5!<%P$N@_Dj%U%!%$%kCf$N$I$3$G%G%#%l%/%F%#%V$,M-8z$J$N$+$r<($7$^$9!#\e(B
+ \e$B<!$K<($9CM$,0l$D0J>e%+%s%^6h@Z$j$GNs5s$5$l$F$$$^$9!#\e(B</p>
+
+ <dl>
+ <dt><strong>\e$B%5!<%P@_Dj%U%!%$%k\e(B</strong></dt>
+
+ <dd>\e$B$3$l$O!"%5!<%P@_Dj%U%!%$%k\e(B
+ (<em>\e$BNc$($P\e(B</em>\e$B!"\e(B<samp>httpd.conf</samp>,
+ <samp>srm.conf</samp>, <samp>access.conf</samp>)
+ \e$BFb$G$O;HMQ$G$-$^$9$,!"\e(B
+ <samp><VirtualHost></samp>\e$B$d\e(B
+ <samp><Directory></samp> \e$B$NCf$G$O\e(B
+ <strong>\e$B;HMQ$G$-$J$$\e(B</strong>\e$B$3$H$r<($7$^$9!#\e(B
+ <samp>.htaccess</samp>\e$B%U%!%$%k$G$N;HMQ$O5v2D$5$l$F$$$^$;$s!#\e(B</dd>
+
+ <dt><strong>\e$B%P!<%A%c%k%[%9%H\e(B</strong></dt>
+
+ <dd>\e$B$3$l$O!"%5!<%P@_Dj%U%!%$%k$N\e(B
+ <samp><VirtualHost></samp>
+ \e$B$NCf$G;HMQ$G$-$k$3$H$r<($7$^$9!#\e(B</dd>
+
+ <dt><strong>\e$B%G%#%l%/%H%j\e(B</strong></dt>
+
+ <dd>\e$B$3$l$O!"%5!<%P@_Dj%U%!%$%k$N\e(B
+ <samp><Directory></samp>\e$B!"\e(B
+ <samp><Location></samp>\e$B!"\e(B<samp><Files></samp>
+ \e$B$NCf$G!"\e(B <a
+ href="../sections.html">Directory\e$B!"\e(BLocation\e$B!"\e(BFiles
+ \e$B%;%/%7%g%s$N5!G=\e(B</a>
+ \e$B$G@bL@$5$l$F$$$k@)8B$N2<$G;HMQ$G$-$k$3$H$r<($7$^$9!#\e(B</dd>
+
+ <dt><strong>.htaccess</strong></dt>
+
+ <dd>\e$B$3$l$O!"%G%#%l%/%H%j\e(B<em>\e$BKh\e(B</em>\e$B$N\e(B
+ <samp>.htaccess</samp> \e$B%U%!%$%kFb$G\e(B
+ \e$B;HMQ2DG=$G$"$k$3$H$r<($7$^$9!#\e(B \e$B$?$@!"\e(B<a
+ href="#Override" rel="Help">\e$B>e=q$-\e(B</a>
+ \e$B$N@_Dj$K$h$C$F$O!"=hM}$5$l$J$$$+$b$7$l$^$;$s!#\e(B</dd>
+ </dl>
+
+ <p>
+ \e$B%G%#%l%/%F%#%V$O;X<($5$l$?%3%s%F%-%9%H$G\e(B<em>\e$B$N$_\e(B</em>\e$B5v2D$5$l$^$9!#\e(B
+ \e$BB>$N>l=j$G;H$*$&$H$9$k$H!"%5!<%P$,$=$N%3%s%F%-%9%H$r@5$7$/07$($J$/\e(B
+ \e$B$J$k$h$&$J@_Dj%(%i!<$,H/@8$9$k$+!"%5!<%P$,$^$C$?$/F0:n$7$J$/$J$k!"\e(B
+ <em>\e$B$9$J$o$A\e(B</em>\e$B!"%5!<%P$,5/F0$7$J$/$J$k$H$$$&$3$H$K$J$j$^$9!#\e(B</p>
+
+ <p>
+ \e$B%G%#%l%/%F%#%V$NM-8z$J0LCV$O!"<B:]$O5s$2$i$l$F$$$k%3%s%F%-%9%H$N\e(B
+ \e$BO@M}OB\e(B (\e$BLuCm\e(B: Boolen OR)
+ \e$B$K$J$j$^$9!#8@$$49$($k$H!"\e(B
+ "<samp>\e$B%5!<%P@_Dj%U%!%$%k!"\e(B.htaccess</samp>" \e$B$GM-8z$@$H\e(B
+ \e$B5-$5$l$F$$$k%G%#%l%/%F%#%V$O\e(B <samp>httpd.conf</samp>
+ \e$B%U%!%$%k$H\e(B <samp>.htaccess</samp>
+ \e$B%U%!%$%k$H$GM-8z$G$9$,!"\e(B <samp><Directory></samp>
+ \e$B$d\e(B <samp><VirtualHost></samp>
+ \e$B$NCf$G$O;HMQ$G$-$^$;$s!#\e(B</p>
+ <hr />
+
+ <h2><a id="Override" name="Override">\e$B>e=q$-\e(B</a></h2>
+
+ <p>\e$B$3$N%G%#%l%/%F%#%V$NB0@-$O!"\e(B<samp>.htaccess</samp>
+ \e$B%U%!%$%kCf$K\e(B
+ \e$B%G%#%l%/%F%#%V$,8=$l$?$H$-$K!"$=$l$N=hM}$rM-8z$K$9$k$?$a$K\e(B
+ \e$B$I$N@_Dj$N>e=q$-$,I,MW$+$r<($7$^$9!#\e(B \e$B%G%#%l%/%F%#%V$N\e(B
+ <a href="#Context" rel="Help">\e$B%3%s%F%-%9%H\e(B</a>
+ \e$B$,!"\e(B<samp>.htaccess</samp>
+ \e$B%U%!%$%kCf$G$O5v2D$7$F$$$J$$>l9g$O!"\e(B \e$B$3$NB0@-$O\e(B
+ "<em>\e$BE,MQIT2D\e(B</em>" \e$B$H=q$+$l$^$9!#\e(B</p>
+
+ <p>\e$B>e=q$-$O!"\e(B<a href="core.html#allowoverride"
+ rel="Help"><samp>AllowOverride</samp></a>
+ \e$B%G%#%l%/%F%#%V$K$h$C$FM-8z$K$5$l!"\e(B
+ \e$BFCDj$N%9%3!<%W\e(B(\e$B%G%#%l%/%H%j$J$I\e(B)\e$B$H!"\e(B
+ \e$B$5$i$K2<0L$N%l%Y%k$N\e(B <samp>AllowOverride</samp>
+ \e$B$G=$@5$5$l$J$$8B$j!"\e(B \e$B$=$NG[2<$KBP$7$FE,MQ$5$l$^$9!#\e(B
+ \e$B%G%#%l%/%F%#%V$N%I%-%e%a%s%H$O<h$jF@$k>e=q$-$NL>A0$b5s$2$^$9!#\e(B</p>
+ <hr />
+
+ <h2><a id="Status" name="Status">\e$B%9%F!<%?%9\e(B</a></h2>
+
+ <p>\e$B$3$l$O%G%#%l%/%F%#%V$,\e(B Apache
+ \e$B%&%'%V%5!<%P$K$I$l$/$i$$$-$D$/AH$_9~$^$l$F$$$k$+$r\e(B
+ \e$B<($7$^$9!#8@$$49$($l$P!"%G%#%l%/%F%#%V$H$=$N5!G=$rMxMQ$9$k$?$a$K!"\e(B
+ \e$B%b%8%e!<%k$N?t$rA}$d$7$F!"%5!<%P$r:F%3%s%Q%$%k$9$kI,MW$,$"$k$+$b$7$l$J$$\e(B
+ \e$B$H$$$&$3$H$r<($7$^$9!#\e(B
+ \e$B$3$NB0@-$,<h$jF@$kCM$O0J2<$N$b$N$G$9\e(B:</p>
+
+ <dl>
+ <dt><strong>Core</strong></dt>
+
+ <dd>"Core" \e$B$N%G%#%l%/%F%#%V$O\e(B Apache
+ \e$B%&%'%V%5!<%P$N4pK\$H$J$k$Y$-$b$N$G$"$j!"\e(B
+ \e$B>o$K;HMQ2DG=$G$"$k$3$H$r<($7$^$9!#\e(B</dd>
+
+ <dt><strong>MPM</strong></dt>
+
+ <dd>"MPM" \e$B$N%G%#%l%/%F%#%V$O\e(B<a
+ href="../mpm.html">\e$B%^%k%A%W%m%;%C%7%s%0%b%8%e!<%k\e(B</a>\e$B$GDs6!$5$l$F$$$^$9!#\e(B
+ \e$B$3$N<oN`$N%G%#%l%/%F%#%V$O%G%#%l%/%F%#%V$NDj5A$N\e(B<a
+ href="#Module">\e$B%b%8%e!<%k\e(B</a>\e$B$N9T$K;H$C$F$$$k%b%8%e!<%k$NL>A0$,=q$+$l$F$$$k\e(B
+ \e$B>l9g$K$N$_;HMQ2DG=$G$9!#\e(B</dd>
+
+ <dt><strong>Base</strong></dt>
+
+ <dd>"Base" \e$B$N%G%#%l%/%F%#%V$O\e(B
+ \e$B%G%U%)%k%H$G%5!<%P$KAH$_9~$^$l$F$$$kI8=`%b%8%e!<%k$NCf$N0l$D$G%5\e(B
+ \e$B%]!<%H$5$l$F$$$F!"$o$6$o$6@_Dj$+$i%b%8%e!<%k$r:o=|$7$?$H$-$r=|$$$F!"\e(B
+ \e$BDL>o$G$O;HMQ2DG=$G$"$k$3$H$r<($7$^$9!#\e(B</dd>
+
+ <dt><strong>Extension</strong></dt>
+
+ <dd>"Extension" \e$B$N%G%#%l%/%F%#%V$O!"\e(B Apache
+ \e$B%5!<%P$NG[I[J*$KF1:-$5$l$F$$$k%b%8%e!<%k$N0l$D$GDs6!$5$l$F$$$k$b$N$N!"\e(B
+ \e$BDL>o$G$O%5!<%P$KAH$_9~$^$l$F$$$J$$$3$H$r<($7$^$9!#\e(B
+ \e$B%G%#%l%/%F%#%V$H$=$N5!G=$rM-8z$K$9$k$K$O!"%5!<%P%S%k%IMQ$N@_Dj%U%!%$%k$r\e(B
+ \e$BJQ99$7$F\e(B Apache
+ \e$B$r:F%3%s%Q%$%k$9$kI,MW$,$"$j$^$9!#\e(B</dd>
+
+ <dt><strong>Experimental</strong></dt>
+
+ <dd>"Experimental" \e$B$N%G%#%l%/%F%#%V$O!"\e(BApache
+ \e$BG[I[J*$K\e(B
+ \e$BF1:-$5$l$F$$$k$b$N$N!";n$7$?$$>l9g$O<+8J@UG$$G9T$J$&\e(B
+ \e$BI,MW$,$"$k$H$$$&$3$H$r<($7$^$9!#%G%#%l%/%F%#%V$O!"$9$Y$F$N%I%-%e%a%s%H$r\e(B
+ \e$B40A4$K$=$m$o$;$k$?$a$K2r@b$5$l$F$$$^$9$,!"%5%]!<%H$5$l$F$$$k$H$O8B$j$^$;$s!#\e(B
+ \e$B%G%#%l%/%F%#%V$rDs6!$9$k%b%8%e!<%k$O%G%U%)%k%H$GAH$_9~$^$l$F$$$k$+$b\e(B
+ \e$B$7$l$^$;$s$7!"$=$&$G$J$$$+$b$7$l$^$;$s!#;HMQ2DG=$+$I$&$+$O!"\e(B
+ \e$B%G%#%l%/%F%#%V$H%b%8%e!<%k$N@bL@$r$7$F$$$k%Z!<%8$N@hF,$rD4$Y$F$/$@$5$$!#\e(B</dd>
+ </dl>
+ <hr />
+
+ <h2><a id="Module" name="Module">\e$B%b%8%e!<%k\e(B</a></h2>
+
+ <p>
+ \e$B$3$l$OC1=c$K%G%#%l%/%F%#%V$,Dj5A$5$l$F$$$k%b%8%e!<%k$NL>A0$r5-:\$7$^$9!#\e(B</p>
+ <hr />
+
+ <h2><a id="Compatibility"
+ name="Compatibility">\e$B8_49@-\e(B</a></h2>
+
+ <p>\e$B%G%#%l%/%F%#%V$,\e(B Apache 1
+ \e$B$NG[I[$KAH$_9~$^$l$F$$$J$+$C$?>l9g!"\e(B
+ \e$B%G%#%l%/%F%#%V$,F3F~$5$l$?%P!<%8%g%s$,$3$3$K=q$+$l$F$$$^$9!#\e(B
+ \e$B%G%#%l%/%F%#%V$,\e(B NCSA HTTPd
+ \e$B%5!<%P$N$b$N$HF1$8L>A0$G$"$k>l9g!"\e(B
+ \e$B0[$J$k5sF0$,$"$k$H$3$3$K=q$+$l$^$9!#\e(B
+ \e$B5sF0$,F1$8>l9g$O!"\e(B"<em>\e$B8_49@-$NLdBjL5$7\e(B</em>"
+ \e$B$H=q$+$l$F$$$^$9!#\e(B</p>
+ <hr />
+
+ <h2><a id="Deprecated" name="Deprecated">\e$BHs?d>)\e(B</a></h2>
+
+ <p>\e$B%G%#%l%/%F%#%V$,\e(B Apache \e$B%P!<%8%g%s\e(B 1
+ \e$B$NG[I[$N8e$G:o=|$5$l$?>l9g!"\e(B
+ \e$B$=$NF0:n$NBe$o$j$r$O$?$9%G%#%l%/%F%#%V$+%*%W%7%g%s$,$3$3$K=q$+$l$^$9!#\e(B
+ \e$B0lHLE*$K!"%G%#%l%/%F%#%V$d5!G=!"%*%W%7%g%s$,Hs?d>)$K$J$k$N$O!"\e(B
+ \e$B5!G=$,=E$J$k$b$N$N%G%P%C%0$r4JC1$K$9$k$?$a$d!"JL$NJ}K!$G$N$_\e(B
+ \e$B$=$N5!G=$r%5%]!<%H$7B3$1$i$l$k!"$H$$$&>l9g$K8B$i$l$^$9!#\e(B</p>
+ <!--#include virtual="footer.html" -->
+ </body>
+</html>
+
+++ /dev/null
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta name="generator" content="HTML Tidy, see www.w3.org" />
-
- <title>Definitions of terms used to describe Apache
- modules</title>
- </head>
- <!-- Background white, links blue (unvisited), navy (visited), red (active) -->
-
- <body bgcolor="#FFFFFF" text="#000000" link="#0000FF"
- vlink="#000080" alink="#FF0000">
- <!--#include virtual="header.html" -->
-
- <h1 align="CENTER">Terms Used to Describe Apache Modules</h1>
-
- <p>Each Apache module is described using a common format that
- looks like this:</p>
-
- <dl>
- <dd><a href="#Status" rel="Help"><strong>Status:</strong></a>
- <em>status</em><br />
- <a href="#SourceFile" rel="Help"><strong>Source
- File:</strong></a> <em>source-file</em><br />
- <a href="#ModuleIdentifier" rel="Help"><strong>Module
- Identifier:</strong></a> <em>module-identifier</em><br />
- <a href="#Compatibility"
- rel="Help"><strong>Compatibility:</strong></a>
- <em>compatibility notes</em></dd>
- </dl>
-
- <p>Each of the attributes, complete with values where possible,
- are described in this document.</p>
-
- <h2>Module Terms</h2>
-
- <ul>
- <li><a href="#Status">Status</a></li>
-
- <li><a href="#SourceFile">Source File</a></li>
-
- <li><a href="#ModuleIdentifier">Module Identifier</a></li>
-
- <li><a href="#Compatibility">Compatibility</a></li>
- </ul>
- <hr />
-
- <h2><a id="Status" name="Status">Status</a></h2>
-
- <p>This indicates how tightly bound into the Apache Web server
- the module is; in other words, you may need to recompile the
- server in order to gain access to the module and its
- functionality. Possible values for this attribute are:</p>
-
- <dl>
- <dt><strong>MPM</strong></dt>
-
- <dd>A module with status "MPM" is a <a
- href="../mpm.html">Multi-Processing Module</a>. Unlike the
- other types of modules, Apache must have one and only one MPM
- in use at any time. This type of module is responsible for
- basic request handling and dispatching.</dd>
-
- <dt><strong>Base</strong></dt>
-
- <dd>A module labeled as having "Base" status is compiled and
- loaded into the server by default, and is therefore normally
- available unless you have taken steps to remove the module
- from your configuration.</dd>
-
- <dt><strong>Extension</strong></dt>
-
- <dd>A module with "Extension" status is not normally compiled
- and loaded into the server. To enable the module and its
- functionality, you may need to change the server build
- configuration files and re-compile Apache.</dd>
-
- <dt><strong>Experimental</strong></dt>
-
- <dd>"Experimental" status indicates that the module is
- available as part of the Apache kit, but you are on your own
- if you try to use it. The module is being documented for
- completeness, and is not necessarily supported.</dd>
-
- <dt><strong>External</strong></dt>
-
- <dd>Modules which are not included with the base Apache
- distribution ("third-party modules") may use the "External"
- status. We are not responsible for, nor do we support such
- modules.</dd>
- </dl>
- <hr />
-
- <h2><a id="SourceFile" name="SourceFile">Source File</a></h2>
-
- <p>This quite simply lists the name of the source file which
- contains the code for the module. This is also the name used by
- the <a
- href="core.html#ifmodule"><code><IfModule></code></a>
- directive.</p>
- <hr />
-
- <h2><a id="ModuleIdentifier" name="ModuleIdentifier">Module
- Identifier</a></h2>
-
- <p>This is a string which identifies the module for use in the
- <a href="mod_so.html#loadmodule">LoadModule</a> directive when
- dynamically loading modules. In particular, it is the name of
- the external variable of type module in the source file.</p>
- <hr />
-
- <h2><a id="Compatibility"
- name="Compatibility">Compatibility</a></h2>
-
- <p>If the module was not part of the original Apache version 2
- distribution, the version in which it was introduced should be
- listed here.</p>
- <!--#include virtual="footer.html" -->
- </body>
-</html>
-
--- /dev/null
+<?xml version="1.0" encoding="iso-2022-jp"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
+ <head>
+
+ <title>Apache \e$B%b%8%e!<%k$N2r@b$G;HMQ$9$kMQ8l\e(B</title>
+
+ </head>
+ <!-- English revision: 1.6 -->
+ <!-- Background white, links blue (unvisited), navy (visited), red (active) -->
+
+ <body bgcolor="#ffffff" text="#000000" link="#0000ff"
+ vlink="#000080" alink="#ff0000">
+ <!--#include virtual="header.html" -->
+
+ <h1 align="center">Apache \e$B%b%8%e!<%k$N2r@b$G;HMQ$9$kMQ8l\e(B</h1>
+
+ <p>Apache \e$B%b%8%e!<%k$K$D$$$F$N2r@b$O!"\e(B
+ \e$B$$$:$l$b0J2<$N6&DL$N=q<0$G5-=R$5$l$F$$$^$9\e(B:</p>
+
+ <dl>
+ <dd><a href="#status" rel="help"><strong>\e$B%9%F!<%?%9\e(B:</strong></a>
+ <em>status</em><br />
+ <a href="#sourcefile" rel="help"><strong>\e$B%=!<%9%U%!%$%k\e(B:</strong></a>
+ <em>source-file</em><br />
+ <a href="#moduleidentifier"
+ rel="help"><strong>\e$B%b%8%e!<%k<1JL;R\e(B:</strong></a>
+ <em>module-identifier</em><br />
+ <a href="#compatibility"
+ rel="help"><strong>\e$B8_49@-\e(B:</strong></a>
+ <em>compatibility notes</em></dd>
+ </dl>
+ <p>\e$B$3$N%I%-%e%a%s%H$G$O$=$l$>$l$NB0@-$r@bL@$7$F$$$^$9!#\e(B
+ \e$B<h$jF@$k$9$Y$F$NCM$b5-=R$7$F$$$^$9!#\e(B</p>
+
+ <h2>\e$B%b%8%e!<%k$NMQ8l\e(B</h2>
+
+ <ul>
+ <li><a href="#status">\e$B%9%F!<%?%9\e(B</a></li>
+
+ <li><a href="#sourcefile">\e$B%=!<%9%U%!%$%k\e(B</a></li>
+
+ <li><a href="#moduleidentifier">\e$B%b%8%e!<%k<1JL;R\e(B</a></li>
+
+ <li><a href="#compatibility">\e$B8_49@-\e(B</a></li>
+ </ul>
+ <hr />
+
+ <h2><a id="status" name="status">\e$B%9%F!<%?%9\e(B</a></h2>
+
+ <p>\e$B$3$l$O!"$=$N%b%8%e!<%k$,\e(B Apache
+ \e$B%&%'%V%5!<%P$K$I$l$/$i$$L)@\$KAH$_9~$^$l$F$$$k$+$r<($7$^$9!#\e(B
+ \e$B8@$$49$($l$P!"%b%8%e!<%k$rAH$_9~$_!"$=$N5!G=$rMxMQ$9$k$?$a$K!"\e(B
+ \e$B%5!<%P$r:F%3%s%Q%$%k$9$kI,MW$,$"$k$+$b$7$l$J$$$H$$$&$3$H$r<($7$^$9!#\e(B
+ \e$B$3$NB0@-$,<h$jF@$kCM$O0J2<$N$b$N$G$9\e(B:</p>
+ <dl>
+ <dt><strong>MPM</strong></dt>
+
+ <dd>\e$B%9%F!<%?%9$,\e(B "MPM" \e$B$N%b%8%e!<%k$O\e(B<a
+ href="../mpm.html">\e$B%^%k%A%W%m%;%C%7%s%0%b%8%e!<%k\e(B</a>\e$B$G$9!#\e(B
+ \e$BB>$N<oN`$N%b%8%e!<%k$H$O0c$C$F!"\e(BApache \e$B$O>o$K\e(B MPM \e$B$r0l$D$@$1\e(B
+ \e$B;HMQ$7B3$1$^$9!#$3$N<oN`$N%b%8%e!<%k$O4pK\E*$J%j%/%(%9%H$N07$$$H\e(B
+ \e$B%G%#%9%Q%C%A$r9T$J$$$^$9!#\e(B</dd>
+
+ <dt><strong>Base</strong></dt>
+
+ <dd>\e$B%9%F!<%?%9$,\e(B "Base"
+ \e$B$N%b%8%e!<%k$O!"%G%U%)%k%H$G%3%s%Q%$%k$5$l$F$o$6$o$6@_Dj$+$i\e(B
+ \e$B%b%8%e!<%k$r:o=|$7$F$$$J$$8B$j!"DL>o$OMxMQ2DG=$G$9!#\e(B
+ </dd>
+
+ <dt><strong>Extension</strong></dt>
+
+ <dd>\e$B%9%F!<%?%9$,\e(B "Extension" \e$B$N%b%8%e!<%k$O!"\e(B
+ \e$B%G%U%)%k%H$G$O%3%s%Q%$%k$5$l$:!"%5!<%P$K$bFI$_9~$^$l$^$;$s!#\e(B
+ \e$B$=$N%b%8%e!<%k$H$=$N5!G=$rM-8z$K$9$k$K$O!"\e(B
+ \e$B%5!<%P$r%S%k%I$9$k$?$a$N@_Dj$rJQ99$7$F!"\e(BApache
+ \e$B$r:F%3%s%Q%$%k$9$kI,MW$,$"$j$^$9!#\e(B</dd>
+ <dt><strong>Experimental</strong></dt>
+
+ <dd>\e$B%9%F!<%?%9$,\e(B "Experimental" \e$B$N%b%8%e!<%k$O!"\e(B
+ Apache \e$BG[I[J*$KF1:-$5$l$F$$$^$9$,!"\e(B
+ \e$B;HMQ$9$k>l9g$O<+8J@UG$$G9T$J$&I,MW$,$"$j$^$9!#\e(B
+ \e$B$=$N%b%8%e!<%k$O!"%I%-%e%a%s%H$b40@.$K8~$1$F:n@.Cf$G$9$7!"\e(B
+ \e$B%5%]!<%H$5$l$k$F$$$k$H$O8B$j$^$;$s!#\e(B</dd>
+ <dt><strong>External</strong></dt>
+
+ <dd>\e$B%9%F!<%?%9$,\e(B "External" \e$B$N%b%8%e!<%k$O!"4pK\\e(B Apache
+ \e$BG[I[$KF1:-$5$l$^$;$s\e(B ("\e$B%5!<%I%Q!<%F%#!<%b%8%e!<%k\e(B")\e$B!#\e(B
+ \e$B$=$N$?$a!"2f!9$K@UG$$O$"$j$^$;$s$7!"\e(B
+ \e$B$=$N%b%8%e!<%k$N%5%]!<%H$b$7$F$$$^$;$s!#\e(B</dd>
+ </dl>
+ <hr />
+
+ <h2><a id="sourcefile" name="sourcefile">\e$B%=!<%9%U%!%$%k\e(B</a></h2>
+
+ <p>\e$B$3$l$OC1=c$K!"\e(B
+ \e$B$=$N%b%8%e!<%k$KI,MW$J%3!<%I$r4^$`%=!<%9%U%!%$%k$NL>A0$rNs5s$7$?$b$N$G$9!#\e(B
+ \e$B$3$l$O!"\e(B<a href="core.html#ifmodule"><code><IfModule></code></a>
+ \e$B%G%#%l%/%F%#%V$G;HMQ$5$l$kL>A0$G$b$"$j$^$9!#\e(B
+ </p>
+ <hr />
+
+ <h2><a id="moduleidentifier"
+ name="moduleidentifier">\e$B%b%8%e!<%k<1JL;R\e(B</a></h2>
+
+ <p>\e$B$3$NJ8;zNs$O!"%b%8%e!<%k$NF0E*FI$_9~$_$r9T$J$&$H$-$K;HMQ$9$k\e(B <a
+ href="mod_so.html#loadmodule">LoadModule</a>
+ \e$B%G%#%l%/%F%#%V$K$*$$$F;HMQ$5$l$k%b%8%e!<%k$N<1JL;R$G$9!#\e(B
+ \e$B>\$7$/=q$/$H!"%=!<%9%U%!%$%kFb$N\e(B module \e$B%?%$%W$N30ItJQ?t$NL>A0$G$9!#\e(B
+ </p>
+ <hr />
+
+ <h2><a id="compatibility" name="compatibility">\e$B8_49@-\e(B</a></h2>
+
+ <p>\e$B$"$k%b%8%e!<%k$,\e(B Apache \e$B%P!<%8%g%s\e(B 2
+ \e$B$NG[I[$K4^$^$l$F$$$J$+$C$?>l9g!"\e(B
+ \e$B$=$N%b%8%e!<%k$,F3F~$5$l$?%P!<%8%g%s$,$3$3$K=q$+$l$F$$$^$9!#\e(B</p>
+ <!--#include virtual="footer.html" -->
+ </body>
+</html>