diff options
author | Rich Bowen <rbowen@apache.org> | 2011-10-10 15:49:33 +0200 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2011-10-10 15:49:33 +0200 |
commit | 64e109836d201a29e341bf638f4f98e61ad3b58b (patch) | |
tree | e58e7aa451924438cf82ed65ecefa015d23e4c72 /docs/manual/rewrite/tech.xml | |
parent | Adds a recommendation that rewrite logging be consulted for more details (diff) | |
download | apache2-64e109836d201a29e341bf638f4f98e61ad3b58b.tar.xz apache2-64e109836d201a29e341bf638f4f98e61ad3b58b.zip |
Fixes numerous typos.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1180964 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/rewrite/tech.xml')
-rw-r--r-- | docs/manual/rewrite/tech.xml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/manual/rewrite/tech.xml b/docs/manual/rewrite/tech.xml index 835eafa6a9..399acfa02c 100644 --- a/docs/manual/rewrite/tech.xml +++ b/docs/manual/rewrite/tech.xml @@ -45,7 +45,7 @@ and URL matching.</p> each of these phases, one or more modules may be called upon to handle that portion of the request lifecycle. Phases include things like URL-to-filename translation, authentication, authorization, - content, and logging. (These is not an exhaustive list.)</p> + content, and logging. (This is not an exhaustive list.)</p> <p>mod_rewrite acts in two of these phases (or "hooks", as they are often called) to influence how URLs may be rewritten.</p> @@ -53,40 +53,40 @@ and URL matching.</p> <p>First, it uses the URL-to-filename translation hook, which occurs after the HTTP request has been read, but before any authorization starts. Secondly, it uses the Fixup hook, which is after the - authorizatin phases, and after per-directory configuration files + authorization phases, and after per-directory configuration files (<code>.htaccess</code> files) have been read, but before the content handler is called.</p> <p>So, after a request comes in and a corresponding server or virtual host has been determined, the rewriting engine starts processing any <code>mod_rewrite</code> directives appearing in the - per-server configuration. (ie, in the main server configuration file + per-server configuration. (i.e., in the main server configuration file and <directive module="core" type="section">Virtualhost</directive> sections.) This happens in the URL-to-filename phase.</p> - <p>A few steps later, when the finaly data directories are found, + <p>A few steps later, once the final data directories have been found, the per-directory configuration directives (<code>.htaccess</code> files and <directive module="core" type="section">Directory</directive> blocks) are applied. This happens in the Fixup phase.</p> <p>In each of these cases, mod_rewrite rewrites the - <code>REQUEST_URI</code> either to a new URI, or to a filename.</p> + <code>REQUEST_URI</code> either to a new URL, or to a filename.</p> <p>In per-directory context (ie, within <code>.htaccess</code> files and <code>Directory</code> blocks), these rules are being applied - after a URI has already been translated to a filename. Because of - this, mod_rewrite temporarily translates the filename back into a URI, - by stripping off directory paty before appling the rules. (See the + after a URL has already been translated to a filename. Because of + this, mod_rewrite temporarily translates the filename back into a URL, + by stripping off directory path before appling the rules. (See the <directive module="mod_rewrite">RewriteBase</directive> directive to see how you can further manipulate how this is handled.) Then, a new - internal subrequest is issued with the new URI. This restarts + internal subrequest is issued with the new URL. This restarts processing of the API phases.</p> - <p>Because of this further manipulation of the URI in per-directory + <p>Because of this further manipulation of the URL in per-directory context, you'll need to take care to craft your rewrite rules differently in that context. In particular, remember that the - leading directory path will be stripped off of the URI that your + leading directory path will be stripped off of the URL that your rewrite rules will see. Consider the examples below for further clarification.</p> @@ -114,7 +114,7 @@ and URL matching.</p> </table> - <p>For even more insight into how mod_rewrite manipulates URIs in + <p>For even more insight into how mod_rewrite manipulates URLs in different contexts, you should consult the <a href="../mod/mod_rewrite.html#logging">log entries</a> made during rewriting.</p> @@ -132,7 +132,7 @@ and URL matching.</p> rules together with their conditions). The operation of the URL rewriting engine itself is exactly the same for both configuration contexts. Only the final result processing is - different. </p> + different.</p> <p>The order of rules in the ruleset is important because the rewriting engine processes them in a special (and not very |