Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 32096 invoked from network); 11 Mar 2010 14:36:55 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 11 Mar 2010 14:36:55 -0000 Received: (qmail 66011 invoked by uid 500); 11 Mar 2010 14:36:22 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 65896 invoked by uid 500); 11 Mar 2010 14:36:21 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 65889 invoked by uid 99); 11 Mar 2010 14:36:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Mar 2010 14:36:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Mar 2010 14:36:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 248C323889CB; Thu, 11 Mar 2010 14:36:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r921872 - in /httpd/httpd/trunk/docs/manual: urlmapping.html.en urlmapping.xml Date: Thu, 11 Mar 2010 14:36:00 -0000 To: cvs@httpd.apache.org From: rbowen@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100311143600.248C323889CB@eris.apache.org> Author: rbowen Date: Thu Mar 11 14:35:59 2010 New Revision: 921872 URL: http://svn.apache.org/viewvc?rev=921872&view=rev Log: Replace 'Apache' with 'Apache HTTP Server' and 'httpd', as appropriate in the context. Modified: httpd/httpd/trunk/docs/manual/urlmapping.html.en httpd/httpd/trunk/docs/manual/urlmapping.xml Modified: httpd/httpd/trunk/docs/manual/urlmapping.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/urlmapping.html.en?rev=921872&r1=921871&r2=921872&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/urlmapping.html.en (original) +++ httpd/httpd/trunk/docs/manual/urlmapping.html.en Thu Mar 11 14:35:59 2010 @@ -25,7 +25,7 @@  tr 

-

This document explains how Apache uses the URL of a request +

This document explains how the Apache HTTP Server uses the URL of a request to determine the filesystem location from which to serve a file.

@@ -47,7 +47,7 @@

DocumentRoot

-

In deciding what file to serve for a given request, Apache's +

In deciding what file to serve for a given request, httpd's default behavior is to take the URL-Path for the request (the part of the URL following the hostname and port) and add it to the end of the DocumentRoot specified @@ -62,7 +62,7 @@ in the file /var/www/html/fish/guppies.html being served to the requesting client.

-

Apache is also capable of Virtual +

httpd is also capable of Virtual Hosting, where the server receives requests for more than one host. In this case, a different DocumentRoot can be specified for each virtual host, or alternatively, the directives provided by the @@ -80,10 +80,10 @@

There are frequently circumstances where it is necessary to allow web access to parts of the filesystem that are not strictly - underneath the DocumentRoot. Apache offers several + underneath the DocumentRoot. httpd offers several different ways to accomplish this. On Unix systems, symbolic links can bring other parts of the filesystem under the DocumentRoot. For security reasons, - Apache will follow symbolic links only if the Options setting for the relevant + httpd will follow symbolic links only if the Options setting for the relevant directory includes FollowSymLinks or SymLinksIfOwnerMatch.

@@ -159,7 +159,7 @@

URL Redirection

The configuration directives discussed in the above sections - tell Apache to get content from a specific place in the filesystem + tell httpd to get content from a specific place in the filesystem and return it to the client. Sometimes, it is desirable instead to inform the client that the requested content is located at a different URL, and instruct the client to make a new request with @@ -179,7 +179,7 @@ substituted for /foo/. You can redirect clients to any server, not only the origin server.

-

Apache also provides a RedirectMatch directive for more +

httpd also provides a RedirectMatch directive for more complicated rewriting problems. For example, to redirect requests for the site home page to a different site, but leave all other requests alone, use the following configuration:

@@ -196,7 +196,7 @@

Reverse Proxy

-

Apache also allows you to bring remote documents into the URL space +

httpd also allows you to bring remote documents into the URL space of the local server. This technique is called reverse proxying because the web server acts like a proxy server by fetching the documents from a remote server and returning them to the @@ -262,7 +262,7 @@ is available to rewrite links in HTML an

Another common cause of "File Not Found" errors is accidental mistyping of URLs, either directly in the browser, - or in HTML links. Apache provides the module + or in HTML links. httpd provides the module mod_speling (sic) to help with this problem. When this module is activated, it will intercept "File Not Found" errors and look for a resource with a similar @@ -280,7 +280,7 @@ is available to rewrite links in HTML an is followed by a URL redirection and a new request from the client.

-

If all attempts to locate the content fail, Apache returns +

If all attempts to locate the content fail, httpd returns an error page with HTTP status code 404 (file not found). The appearance of this page is controlled with the ErrorDocument directive Modified: httpd/httpd/trunk/docs/manual/urlmapping.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/urlmapping.xml?rev=921872&r1=921871&r2=921872&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/urlmapping.xml (original) +++ httpd/httpd/trunk/docs/manual/urlmapping.xml Thu Mar 11 14:35:59 2010 @@ -4,7 +4,7 @@