From: André Malo Date: Sun, 20 Oct 2002 01:05:42 +0000 (+0000) Subject: step by step... :) X-Git-Tag: 2.0.44~243 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3504393928182a92a6cb093ffa533d1e1b71d422;p=apache step by step... :) -> add some s to mod_action and mod_asis little markup improvements git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97267 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_actions.html.en b/docs/manual/mod/mod_actions.html.en index 80d0f832c5..3202e9460a 100644 --- a/docs/manual/mod/mod_actions.html.en +++ b/docs/manual/mod/mod_actions.html.en @@ -18,33 +18,31 @@ media type or request method.
top

Action Directive

Description: +

See also

top

Action Directive

Description: Activates a CGI script for a particular handler or content-type
Syntax: - Action action-type cgi-script
Context: + Action action-type cgi-script
Context: server config, virtual host, directory, .htaccess
Override: FileInfo
Status: Base
Module: mod_actions

This directive adds an action, which will activate - cgi-script when action-type is triggered by the - request. The cgi-script is the URL-path to a resource + cgi-script when action-type is triggered by the + request. The cgi-script is the URL-path to a resource that has been designated as a CGI script using ScriptAlias or AddHandler. The - action-type can be either a handler or a MIME content type. It + action-type can be either a handler or a MIME content type. It sends the URL and file path of the requested document using the standard CGI PATH_INFO and PATH_TRANSLATED environment variables.

-

Examples

- - - # Requests for files of a particular type:
- Action image/gif /cgi-bin/images.cgi
-
- # Files of a particular file extension
- AddHandler my-file-type .xyz
- Action my-file-type /cgi-bin/program.cgi
-

+

Examples

+ # Requests for files of a particular type:
+ Action image/gif /cgi-bin/images.cgi
+
+ # Files of a particular file extension
+ AddHandler my-file-type .xyz
+ Action my-file-type /cgi-bin/program.cgi
+

In the first example, requests for files with a MIME content type of image/gif will instead be handled by the @@ -56,23 +54,23 @@ content-type

Syntax:

See also

top

Script Directive

Description: Activates a CGI script for a particular request method.
Syntax: - Script method cgi-script
Context: + Script method cgi-script
Context: server config, virtual host, directory
Status: Base
Module: mod_actions

This directive adds an action, which will activate - cgi-script when a file is requested using the method of - method. The cgi-script is the URL-path to a + cgi-script when a file is requested using the method of + method. The cgi-script is the URL-path to a resource that has been designated as a CGI script using ScriptAliase or AddHandler. The URL and file path of the requested document is sent using the standard CGI PATH_INFO and PATH_TRANSLATED environment variables.

-
+
Any arbitrary method name may be used. Method names are - case-sensitive, so Script PUT and - Script put have two entirely different + case-sensitive, so Script PUT and + Script put have two entirely different effects. -
+

Note that the Script command defines default actions only. If a CGI script is called, or some other resource that is @@ -82,11 +80,11 @@ method.

Syntax: (e.g., foo.html?hi). Otherwise, the request will proceed normally.

-

Examples

- - # For <ISINDEX>-style searching
- Script GET /cgi-bin/search
- # A CGI PUT handler
- Script PUT /~bob/put.cgi
-

+

Examples

+ # For <ISINDEX>-style searching
+ Script GET /cgi-bin/search
+
+ # A CGI PUT handler
+ Script PUT /~bob/put.cgi
+

\ No newline at end of file diff --git a/docs/manual/mod/mod_actions.xml b/docs/manual/mod/mod_actions.xml index 1cc82a3667..07079faf65 100644 --- a/docs/manual/mod/mod_actions.xml +++ b/docs/manual/mod/mod_actions.xml @@ -22,14 +22,15 @@ media type or request method. files.

- +mod_cgi +Dynamic Content with CGI +Apache's Handler Use + Action - Activates a CGI script for a particular handler or content-type - -Action action-type cgi-script +Action action-type cgi-script server configvirtual host directory.htaccess @@ -38,27 +39,25 @@ content-type

This directive adds an action, which will activate - cgi-script when action-type is triggered by the - request. The cgi-script is the URL-path to a resource + cgi-script when action-type is triggered by the + request. The cgi-script is the URL-path to a resource that has been designated as a CGI script using ScriptAlias or AddHandler. The - action-type can be either a action-type can be either a handler or a MIME content type. It sends the URL and file path of the requested document using the standard CGI PATH_INFO and PATH_TRANSLATED environment variables.

- -Examples - - # Requests for files of a particular type:
- Action image/gif /cgi-bin/images.cgi
-
- # Files of a particular file extension
- AddHandler my-file-type .xyz
- Action my-file-type /cgi-bin/program.cgi
-
+ Examples + # Requests for files of a particular type:
+ Action image/gif /cgi-bin/images.cgi
+
+ # Files of a particular file extension
+ AddHandler my-file-type .xyz
+ Action my-file-type /cgi-bin/program.cgi
+

In the first example, requests for files with a MIME content type of image/gif will instead be handled by the @@ -70,35 +69,32 @@ content-type AddHandler - - Script - Activates a CGI script for a particular request method. - Script method cgi-script + Script method cgi-script server configvirtual host directory

This directive adds an action, which will activate - cgi-script when a file is requested using the method of - method. The cgi-script is the URL-path to a + cgi-script when a file is requested using the method of + method. The cgi-script is the URL-path to a resource that has been designated as a CGI script using ScriptAliase or AddHandler. The URL and file path of the requested document is sent using the standard CGI PATH_INFO and PATH_TRANSLATED environment variables.

- + Any arbitrary method name may be used. Method names are - case-sensitive, so Script PUT and - Script put have two entirely different + case-sensitive, so Script PUT and + Script put have two entirely different effects. - +

Note that the Script command defines default actions only. If a CGI script is called, or some other resource that is @@ -108,15 +104,14 @@ method. (e.g., foo.html?hi). Otherwise, the request will proceed normally.

- -Examples - # For <ISINDEX>-style searching
- Script GET /cgi-bin/search
- # A CGI PUT handler
- Script PUT /~bob/put.cgi
-
+ Examples + # For <ISINDEX>-style searching
+ Script GET /cgi-bin/search
+
+ # A CGI PUT handler
+ Script PUT /~bob/put.cgi
+
-
diff --git a/docs/manual/mod/mod_alias.html.en b/docs/manual/mod/mod_alias.html.en index 953e369f01..5f319991ed 100644 --- a/docs/manual/mod/mod_alias.html.en +++ b/docs/manual/mod/mod_alias.html.en @@ -33,8 +33,8 @@
  • ScriptAliasMatch
  • See also

    top

    Alias Directive

    Description: Maps URLs to filesystem locations
    Syntax: - Alias URL-path - file-path|directory-path
    Context: + Alias URL-path +file-path|directory-path
    Context: server config, virtual host
    Status: Base
    Module: mod_alias
    @@ -42,18 +42,18 @@

    The Alias directive allows documents to be stored in the local filesystem other than under the DocumentRoot. URLs with a - (%-decoded) path beginning with url-path will be mapped - to local files beginning with directory-filename.

    + (%-decoded) path beginning with url-path will be mapped + to local files beginning with directory-path.

    -

    Example:

    - -

    Alias /image /ftp/pub/image

    +

    Example:

    + Alias /image /ftp/pub/image +

    A request for http://myserver/image/foo.gif would cause the server to return the file /ftp/pub/image/foo.gif.

    Note that if you include a trailing / on the - url-path then the server will require a trailing / in + url-path then the server will require a trailing / in order to expand the alias. That is, if you use Alias /icons/ /usr/local/apache/icons/ then the url /icons will not be aliased.

    @@ -69,8 +69,8 @@
    top

    AliasMatch Directive

    Description: Maps URLs to filesystem locations using regular expressions
    Syntax: - AliasMatch regex - file-path|directory-path
    Context: + AliasMatch regex +file-path|directory-path
    Context: server config, virtual host
    Status: Base
    Module: mod_alias
    @@ -81,27 +81,29 @@ expressions
    Syntax: matches into the given string and use it as a filename. For example, to activate the /icons directory, one might use:

    -

    - AliasMatch ^/icons(.*) /usr/local/apache/icons$1 -

    + +

    + AliasMatch ^/icons(.*) /usr/local/apache/icons$1 +

    top

    Redirect Directive

    Description: Sends an external redirect asking the client to fetch a different URL
    Syntax: - Redirect [status] URL-path URL
    Context: + Redirect [status] URL-path +URL
    Context: server config, virtual host, directory, .htaccess
    Override: FileInfo
    Status: Base
    Module: mod_alias

    The Redirect directive maps an old URL into a new one. The new URL is returned to the client which attempts to fetch it - again with the new address. URL-path a (%-decoded) + again with the new address. URL-path a (%-decoded) path; any requests for documents beginning with this path will be returned a redirect error to a new (%-encoded) URL beginning - with URL.

    + with URL.

    -

    Example:

    - -

    Redirect /service http://foo2.bar.com/service

    +

    Example:

    + Redirect /service http://foo2.bar.com/service +

    If the client requests http://myserver/service/foo.txt, it will be told to access http://foo2.bar.com/service/foo.txt @@ -109,14 +111,14 @@ a different URL

    Syntax: -

    If no status argument is given, the redirect will +

    If no status argument is given, the redirect will be "temporary" (HTTP status 302). This indicates to the client - that the resource has moved temporarily. The status + that the resource has moved temporarily. The status argument can be used to return other HTTP status codes:

    @@ -139,27 +141,26 @@ sections.

    Returns a "Gone" status (410) indicating that the resource has been permanently removed. When this status is - used the url argument should be omitted.
    + used the URL argument should be omitted.

    Other status codes can be returned by giving the numeric - status code as the value of status. If the status is - between 300 and 399, the url argument must be present, + status code as the value of status. If the status is + between 300 and 399, the URL argument must be present, otherwise it must be omitted. Note that the status must be known to the Apache code (see the function send_error_response in http_protocol.c).

    -

    Example:

    - -

    - Redirect permanent /one http://example.com/two
    - Redirect 303 /three http://example.com/other +

    Example:

    + Redirect permanent /one http://example.com/two
    + Redirect 303 /three http://example.com/other

    top

    RedirectMatch Directive

    Description: Sends an external redirect based on a regular expression match of the current URL
    Syntax: - RedirectMatch [status] regex URL
    Context: + RedirectMatch [status] regex +URL
    Context: server config, virtual host, directory, .htaccess
    Override: FileInfo
    Status: Base
    Module: @@ -171,13 +172,14 @@ of the current URL
    Syntax: matches into the given string and use it as a filename. For example, to redirect all GIF files to like-named JPEG files on another server, one might use:

    -

    - RedirectMatch (.*)\.gif$ http://www.anotherserver.com$1.jpg -

    + +

    + RedirectMatch (.*)\.gif$ http://www.anotherserver.com$1.jpg +

    top

    RedirectPermanent Directive

    Description: Sends an external permanent redirect asking the client to fetch a different URL
    Syntax: - RedirectPermanent URL-path URL
    Context: + RedirectPermanent URL-path URL
    Context: server config, virtual host, directory, .htaccess
    Override: FileInfo
    Status: Base
    Module: @@ -188,7 +190,7 @@ a different URL
    Syntax:
    top

    RedirectTemp Directive

    - @@ -86,10 +86,10 @@ responses from the server - - + header for proxied requests - - - - user authentication - - -
    Description: Sends an external temporary redirect asking the client to fetch a different URL
    Syntax: - RedirectTemp URL-path URL
    Context: + RedirectTemp URL-path URL
    Context: server config, virtual host, directory, .htaccess
    Override: FileInfo
    Status: Base
    Module: @@ -199,8 +201,8 @@ a different URL
    Syntax:
    top

    ScriptAlias Directive

    Description: Maps a URL to a filesystem location and designates the target as a CGI script
    Syntax: - ScriptAlias -URL-path file-path|directory-path
    Context: + ScriptAlias URL-path +file-path|directory-path
    Context: server config, virtual host
    Status: Base
    Module: mod_alias
    @@ -208,21 +210,21 @@ target as a CGI script
    Syn behavior as the Alias directive, except that in addition it marks the target directory as containing CGI scripts that will be processed by mod_cgi's cgi-script handler. URLs with a - (%-decoded) path beginning with URL-path will be mapped + (%-decoded) path beginning with URL-path will be mapped to scripts beginning with the second argument which is a full pathname in the local filesystem.

    -

    Example:

    - -

    ScriptAlias /cgi-bin/ /web/cgi-bin/

    +

    Example:

    + ScriptAlias /cgi-bin/ /web/cgi-bin/ +

    A request for http://myserver/cgi-bin/foo would cause the server to run the script /web/cgi-bin/foo.

    top

    ScriptAliasMatch Directive

    Description: Maps a URL to a filesystem location using a regular expression and designates the target as a CGI script
    Syntax: - ScriptAliasMatch -regex file-path|directory-path
    Context: + ScriptAliasMatch regex +file-path|directory-path
    Context: server config, virtual host
    Status: Base
    Module: mod_alias
    @@ -233,7 +235,8 @@ and designates the target as a CGI script

    - ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1 -

    + +

    + ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1 +

    \ No newline at end of file diff --git a/docs/manual/mod/mod_alias.xml b/docs/manual/mod/mod_alias.xml index 6ed576e621..c8407ad04f 100644 --- a/docs/manual/mod/mod_alias.xml +++ b/docs/manual/mod/mod_alias.xml @@ -35,8 +35,8 @@ href="../urlmapping.html">Mapping URLs to the filesystem Alias Maps URLs to filesystem locations - Alias URL-path - file-path|directory-path +Alias URL-path +file-path|directory-path server configvirtual host @@ -45,18 +45,18 @@ href="../urlmapping.html">Mapping URLs to the filesystem

    The Alias directive allows documents to be stored in the local filesystem other than under the DocumentRoot. URLs with a - (%-decoded) path beginning with url-path will be mapped - to local files beginning with directory-filename.

    + (%-decoded) path beginning with url-path will be mapped + to local files beginning with directory-path.

    -

    Example:

    - -Alias /image /ftp/pub/image + Example: + Alias /image /ftp/pub/image +

    A request for http://myserver/image/foo.gif would cause the server to return the file /ftp/pub/image/foo.gif.

    Note that if you include a trailing / on the - url-path then the server will require a trailing / in + url-path then the server will require a trailing / in order to expand the alias. That is, if you use Alias /icons/ /usr/local/apache/icons/ then the url /icons will not be aliased.

    @@ -77,8 +77,8 @@ href="../urlmapping.html">Mapping URLs to the filesystem AliasMatch Maps URLs to filesystem locations using regular expressions -AliasMatch regex - file-path|directory-path +AliasMatch regex +file-path|directory-path server configvirtual host @@ -91,9 +91,10 @@ expressions matches into the given string and use it as a filename. For example, to activate the /icons directory, one might use:

    - - AliasMatch ^/icons(.*) /usr/local/apache/icons$1 - + + + AliasMatch ^/icons(.*) /usr/local/apache/icons$1 +
    @@ -101,7 +102,8 @@ expressions Redirect Sends an external redirect asking the client to fetch a different URL -Redirect [status] URL-path URL +Redirect [status] URL-path +URL server configvirtual host directory.htaccess FileInfo @@ -109,14 +111,14 @@ a different URL

    The Redirect directive maps an old URL into a new one. The new URL is returned to the client which attempts to fetch it - again with the new address. URL-path a (%-decoded) + again with the new address. URL-path a (%-decoded) path; any requests for documents beginning with this path will be returned a redirect error to a new (%-encoded) URL beginning - with URL.

    + with URL.

    -

    Example:

    - -Redirect /service http://foo2.bar.com/service + Example: + Redirect /service http://foo2.bar.com/service +

    If the client requests http://myserver/service/foo.txt, it will be told to access http://foo2.bar.com/service/foo.txt @@ -124,14 +126,14 @@ a different URL Note

    Redirect directives take precedence over Alias and ScriptAlias directives, irrespective of their ordering in -the configuration file. Also, URL-path must be an absolute +the configuration file. Also, URL-path must be an absolute path, not a relative path, even when used with .htaccess files or inside of Directory sections.

    -

    If no status argument is given, the redirect will +

    If no status argument is given, the redirect will be "temporary" (HTTP status 302). This indicates to the client - that the resource has moved temporarily. The status + that the resource has moved temporarily. The status argument can be used to return other HTTP status codes:

    @@ -154,21 +156,19 @@ sections.

    Returns a "Gone" status (410) indicating that the resource has been permanently removed. When this status is - used the url argument should be omitted.
    + used the URL argument should be omitted.

    Other status codes can be returned by giving the numeric - status code as the value of status. If the status is - between 300 and 399, the url argument must be present, + status code as the value of status. If the status is + between 300 and 399, the URL argument must be present, otherwise it must be omitted. Note that the status must be known to the Apache code (see the function send_error_response in http_protocol.c).

    -

    Example:

    - - - Redirect permanent /one http://example.com/two
    - Redirect 303 /three http://example.com/other + Example: + Redirect permanent /one http://example.com/two
    + Redirect 303 /three http://example.com/other
    @@ -178,7 +178,8 @@ sections.

    RedirectMatch Sends an external redirect based on a regular expression match of the current URL -RedirectMatch [status] regex URL +RedirectMatch [status] regex +URL server configvirtual host directory.htaccess FileInfo @@ -192,9 +193,10 @@ of the current URL matches into the given string and use it as a filename. For example, to redirect all GIF files to like-named JPEG files on another server, one might use:

    - - RedirectMatch (.*)\.gif$ http://www.anotherserver.com$1.jpg - + + + RedirectMatch (.*)\.gif$ http://www.anotherserver.com$1.jpg + @@ -202,7 +204,7 @@ of the current URL RedirectTemp Sends an external temporary redirect asking the client to fetch a different URL -RedirectTemp URL-path URL +RedirectTemp URL-path URL server configvirtual host directory.htaccess FileInfo @@ -218,7 +220,7 @@ a different URL RedirectPermanent Sends an external permanent redirect asking the client to fetch a different URL -RedirectPermanent URL-path URL +RedirectPermanent URL-path URL server configvirtual host directory.htaccess FileInfo @@ -234,8 +236,8 @@ a different URL ScriptAlias Maps a URL to a filesystem location and designates the target as a CGI script -ScriptAlias -URL-path file-path|directory-path +ScriptAlias URL-path +file-path|directory-path server configvirtual host @@ -245,13 +247,13 @@ target as a CGI script directive, except that in addition it marks the target directory as containing CGI scripts that will be processed by mod_cgi's cgi-script handler. URLs with a - (%-decoded) path beginning with URL-path will be mapped + (%-decoded) path beginning with URL-path will be mapped to scripts beginning with the second argument which is a full pathname in the local filesystem.

    -

    Example:

    - -ScriptAlias /cgi-bin/ /web/cgi-bin/ + Example: + ScriptAlias /cgi-bin/ /web/cgi-bin/ +

    A request for http://myserver/cgi-bin/foo would cause the server to run the script /web/cgi-bin/foo.

    @@ -262,8 +264,8 @@ target as a CGI script ScriptAliasMatch Maps a URL to a filesystem location using a regular expression and designates the target as a CGI script -ScriptAliasMatch -regex file-path|directory-path +ScriptAliasMatch regex +file-path|directory-path server configvirtual host @@ -276,9 +278,10 @@ and designates the target as a CGI script matches into the given string and use it as a filename. For example, to activate the standard /cgi-bin, one might use:

    - - ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1 - + + + ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1 + diff --git a/docs/manual/mod/mod_asis.html.en b/docs/manual/mod/mod_asis.html.en index a014c64719..5f06528cbb 100644 --- a/docs/manual/mod/mod_asis.html.en +++ b/docs/manual/mod/mod_asis.html.en @@ -20,12 +20,12 @@ HTTP headers
    Status:

    For historical reasons, this module will also process any file with the mime type httpd/send-as-is.

    -
    top

    Usage

    +

    Directives

    This module provides no directives.

    Topics

    See also

    top

    Usage

    In the server configuration file, associate files with the send-as-is handler e.g.

    -

    AddHandler send-as-is asis

    +

    AddHandler send-as-is asis

    The contents of any file with a .asis extension will then be sent by Apache to the client with almost no @@ -39,27 +39,28 @@ HTTP headers

    Status: redirected.

    -

    Status: 301 Now where did I leave that URL
    - Location: http://xyz.abc.com/foo/bar.html
    - Content-type: text/html
    +

    + Status: 301 Now where did I leave that URL
    + Location: http://xyz.abc.com/foo/bar.html
    + Content-type: text/html

    - <HTML>
    - <HEAD>
    - <TITLE>Lame excuses'R'us</TITLE>
    - </HEAD>
    - <BODY>
    - <H1>Fred's exceptionally wonderful page has moved - to
    - <A - HREF="http://xyz.abc.com/foo/bar.html">Joe's</A> + <html>
    + <head>
    + <title>Lame excuses'R'us</title>
    + </head>
    + <body>
    + <h1>Fred's exceptionally wonderful page has moved to
    + <a href="http://xyz.abc.com/foo/bar.html">Joe's</a> site.
    - </H1>
    - </BODY>
    - </HTML> -

    + </h1>
    + </body>
    + </html> +

    -

    Notes: the server always adds a Date: and Server: header to - the data returned to the client, so these should not be +

    Notes:

    +

    The server always adds a Date: and Server: + header to the data returned to the client, so these should not be included in the file. The server does not add a - Last-Modified header; it probably should.

    + Last-Modified header; it probably should.

    +
    \ No newline at end of file diff --git a/docs/manual/mod/mod_asis.xml b/docs/manual/mod/mod_asis.xml index 564d0e034c..dcd9d811b4 100644 --- a/docs/manual/mod/mod_asis.xml +++ b/docs/manual/mod/mod_asis.xml @@ -25,13 +25,14 @@ HTTP headers mod_headers mod_cern_meta +Apache's Handler Use -
    Usage +
    Usage

    In the server configuration file, associate files with the send-as-is handler e.g.

    -AddHandler send-as-is asis + AddHandler send-as-is asis

    The contents of any file with a .asis extension will then be sent by Apache to the client with almost no @@ -45,29 +46,30 @@ HTTP headers redirected.

    -Status: 301 Now where did I leave that URL
    - Location: http://xyz.abc.com/foo/bar.html
    - Content-type: text/html
    + + Status: 301 Now where did I leave that URL
    + Location: http://xyz.abc.com/foo/bar.html
    + Content-type: text/html

    - <HTML>
    - <HEAD>
    - <TITLE>Lame excuses'R'us</TITLE>
    - </HEAD>
    - <BODY>
    - <H1>Fred's exceptionally wonderful page has moved - to
    - <A - HREF="http://xyz.abc.com/foo/bar.html">Joe's</A> + <html>
    + <head>
    + <title>Lame excuses'R'us</title>
    + </head>
    + <body>
    + <h1>Fred's exceptionally wonderful page has moved to
    + <a href="http://xyz.abc.com/foo/bar.html">Joe's</a> site.
    - </H1>
    - </BODY>
    - </HTML> -
    + </h1>
    + </body>
    + </html> +
    -

    Notes: the server always adds a Date: and Server: header to - the data returned to the client, so these should not be + Notes: +

    The server always adds a Date: and Server: + header to the data returned to the client, so these should not be included in the file. The server does not add a - Last-Modified header; it probably should.

    + Last-Modified header; it probably should.

    +
    diff --git a/docs/manual/mod/quickreference.html.en b/docs/manual/mod/quickreference.html.en index 2c73ab3195..f7668bcd3f 100644 --- a/docs/manual/mod/quickreference.html.en +++ b/docs/manual/mod/quickreference.html.en @@ -35,7 +35,7 @@ accepting requests on network sockets
    AcceptPathInfo On|Off|Default Default svdhC
    Resources accept trailing pathname information
    AccessFileName filename [filename] ... .htaccess svC
    Name of the distributed configuration file
    Action action-type cgi-scriptsvdhB
    Activates a CGI script for a particular handler or +
    Action action-type cgi-scriptsvdhB
    Activates a CGI script for a particular handler or content-type
    AddAlt string file [file] ...svdhB
    Alternate text to display for a file, instead of an icon selected by filename
    AddType MIME-type extension [extension] ...svdhB
    Maps the given filename extensions onto the specified content type
    Alias URL-path - file-path|directory-pathsvB
    Maps URLs to filesystem locations
    AliasMatch regex - file-path|directory-pathsvB
    Maps URLs to filesystem locations using regular +
    Alias URL-path +file-path|directory-pathsvB
    Maps URLs to filesystem locations
    AliasMatch regex +file-path|directory-pathsvB
    Maps URLs to filesystem locations using regular expressions
    Allow from all|host|env=env-variable @@ -418,13 +418,15 @@ matched by regular expressions
    ReadmeName filenamesvdhB
    Name of the file that will be inserted at the end of the index listing
    Redirect [status] URL-path URLsvdhB
    Sends an external redirect asking the client to fetch +
    Redirect [status] URL-path +URLsvdhB
    Sends an external redirect asking the client to fetch a different URL
    RedirectMatch [status] regex URLsvdhB
    Sends an external redirect based on a regular expression match +
    RedirectMatch [status] regex +URLsvdhB
    Sends an external redirect based on a regular expression match of the current URL
    RedirectPermanent URL-path URLsvdhB
    Sends an external permanent redirect asking the client to fetch +
    RedirectPermanent URL-path URLsvdhB
    Sends an external permanent redirect asking the client to fetch a different URL
    RedirectTemp URL-path URLsvdhB
    Sends an external temporary redirect asking the client to fetch +
    RedirectTemp URL-path URLsvdhB
    Sends an external temporary redirect asking the client to fetch a different URL
    RemoveCharset extension [extension] ...vdhB
    Removes any character set associations for a set of file @@ -477,13 +479,13 @@ processes launched by Apache children
    ScoreBoardFile file-path logs/apache_status sM
    Location of the file used to store coordination data for the child processes
    Script method cgi-scriptsvdB
    Activates a CGI script for a particular request +
    Script method cgi-scriptsvdB
    Activates a CGI script for a particular request method.
    ScriptAlias -URL-path file-path|directory-pathsvB
    Maps a URL to a filesystem location and designates the +
    ScriptAlias URL-path +file-path|directory-pathsvB
    Maps a URL to a filesystem location and designates the target as a CGI script
    ScriptAliasMatch -regex file-path|directory-pathsvB
    Maps a URL to a filesystem location using a regular expression +
    ScriptAliasMatch regex +file-path|directory-pathsvB
    Maps a URL to a filesystem location using a regular expression and designates the target as a CGI script
    ScriptInterpreterSource registry|script script svdhC
    Technique for locating the interpreter for CGI scripts