From: Alexei Kosut Date: Sun, 1 Dec 1996 06:44:40 +0000 (+0000) Subject: Fix compat notes, and make the UserDir docs to be (a) correct, and (b) X-Git-Tag: APACHE_1_2b1~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=741ec433e67978c5b58cd697576015daebf0a5d4;p=apache Fix compat notes, and make the UserDir docs to be (a) correct, and (b) to use more "friendly" expamples (hah). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@77102 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_alias.html b/docs/manual/mod/mod_alias.html index 7bd28e1648..0984bf82e1 100644 --- a/docs/manual/mod/mod_alias.html +++ b/docs/manual/mod/mod_alias.html @@ -30,8 +30,6 @@ host filesystem in the the document tree, and for URL redirection. Context: server config, virtual host
Status: Base
Module: mod_alias
-Compatibility: Alias is only available in Apache 1.1 -and later

The Alias directive allows documents to be stored in the local filesystem other than under the DocumentRoot. @@ -115,8 +113,6 @@ This directive makes the client know that the Redirect is permanent. Context: server config, virtual host
Status: Base
Module: mod_alias
-Compatibility: ScriptAlias is only available in Apache 1.1 -and later

The ScriptAlias directive has the same behaviour as the Alias directive, except that in addition it diff --git a/docs/manual/mod/mod_userdir.html b/docs/manual/mod/mod_userdir.html index 2290e4de18..27bf9c99e5 100644 --- a/docs/manual/mod/mod_userdir.html +++ b/docs/manual/mod/mod_userdir.html @@ -24,23 +24,25 @@ is compiled in by default. It provides for user-specific directories. Default: UserDir public_html
Context: server config, virtual host
Status: Base
-Module: mod_userdir

+Module: mod_userdir
+Compatibility: All forms except the UserDir +public_html form are only available in Apache 1.1 or above.

The UserDir directive sets the real directory in a user's home directory to use when a request for a document for a user is received. Directory is either disabled, to disable this feature, or the name of a directory, following one of the following patterns. If not disabled, then a request for -http://www.foo.com/~bar/one/two.html will be translated to: +http://www.foo.com/~bob/one/two.html will be translated to:

-UserDir public_html     -> ~bar/public_html/one/two.html
-UserDir /usr/web        -> /usr/web/bar/one/two.html
-UserDir /home/*/www     -> /home/bar/www/one/two.html
+UserDir public_html     -> ~bob/public_html/one/two.html
+UserDir /usr/web        -> /usr/web/bob/one/two.html
+UserDir /home/*/www     -> /home/bob/www/one/two.html
 
The following directives will send redirects to the client:
-UserDir http://www.x.com/users   -> http//www.x.com/users/bar/one/two.html
-UserDir http://www.x.com/*/y     -> http://www.x.com/y/one/two.html
+UserDir http://www.foo.com/users   -> http//www.foo.com/users/bob/one/two.html
+UserDir http://www.foo.com/*/usr   -> http://www.foo.com/bob/usr/one/two.html