pepper 00/12/02 19:19:19
Modified: htdocs/manual env.html
Log:
Fix several typos around 'referrer' and 'referral' being misspelled.
Revision Changes Path
1.14 +6 -6 httpd-docs-1.3/htdocs/manual/env.html
Index: env.html
===================================================================
RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/env.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- env.html 2000/10/23 22:02:35 1.13
+++ env.html 2000/12/03 03:19:19 1.14
@@ -63,7 +63,7 @@
to be set on a per-request basis based on characteristics of particular
requests. For example, a variable could be set only when a specific
browser (User-Agent) is making a request, or only when a specific
-Referer header is found. Even more flexibility is available through the
+Referrer header is found. Even more flexibility is available through the
mod_rewrite's <code>RewriteRule</code> which uses the
<code>[E=...]</code> option to set environment variables.</p>
@@ -117,7 +117,7 @@
<p>Access to the server can be controlled based on the value of
environment variables using the <code>allow from env=</code> and
-<code>deny from env=</code></a> directives. In combination with
+<code>deny from env=</code> directives. In combination with
<code>SetEnvIf</code>, this allows for flexible control of access to
the server based on characteristics of the client. For example, you
can use these directives to deny access to a particular browser
@@ -241,13 +241,13 @@
called /web/images.</p>
<pre>
- SetEnvIf Referer "^http://www.example.com/" local_referal
- # Allow browsers that do not send Referer info
- SetEnvIf Referer "^$" local_referal
+ SetEnvIf Referrer "^http://www.example.com/" local_referral
+ # Allow browsers that do not send Referrer info
+ SetEnvIf Referrer "^$" local_referral
<Directory /web/images>
Order Deny,Allow
Deny from all
- Allow from env=local_referal
+ Allow from env=local_referral
</Directory>
</pre>
|