From: Eric Covener Date: Mon, 8 Aug 2011 12:38:12 +0000 (+0000) Subject: xforms X-Git-Tag: 2.2.20~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a50038a8dd2c0a9e0b4d5350e07609ce226d63dc;p=thirdparty%2Fapache%2Fhttpd.git xforms git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1154945 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index 7b8b33cc815..a84d368e164 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -506,7 +506,16 @@ NoDecode option available in 2.2.18 and later. features (Options and XBitHack). An equal sign may be given followed by a comma (but no spaces) - separated lists of options that may be set using the Options command. + separated lists of options that may be set using the Options command. + +

Implicit disabling of Options

+

Even though the list of options that may be used in .htaccess files + can be limited with this directive, as long as any Options directive is allowed any + other inherited option can be disabled by using the non-relative + syntax. In other words, this mechanism cannot force a specific option + to remain set while allowing any others to be set. +

+

Example:

diff --git a/docs/manual/mod/mod_alias.html.en b/docs/manual/mod/mod_alias.html.en index 11277cf8cf1..d44c5902fee 100644 --- a/docs/manual/mod/mod_alias.html.en +++ b/docs/manual/mod/mod_alias.html.en @@ -127,10 +127,10 @@ Alias /image /ftp/pub/image

-

A request for http://myserver/image/foo.gif would cause +

A request for http://example.com/image/foo.gif would cause the server to return the file /ftp/pub/image/foo.gif. Only complete path segments are matched, so the above alias would not match a - request for http://myserver/imagefoo.gif. For more complex + request for http://example.com/imagefoo.gif. For more complex matching using regular expressions, see the AliasMatch directive.

Note that if you include a trailing / on the @@ -421,7 +421,7 @@ target as a CGI script ScriptAlias /cgi-bin/ /web/cgi-bin/

-

A request for http://myserver/cgi-bin/foo would cause the +

A request for http://example.com/cgi-bin/foo would cause the server to run the script /web/cgi-bin/foo. This configuration is essentially equivalent to:

diff --git a/docs/manual/mod/mod_dir.html.en b/docs/manual/mod/mod_dir.html.en index 20151b9284e..cf9e7e4c660 100644 --- a/docs/manual/mod/mod_dir.html.en +++ b/docs/manual/mod/mod_dir.html.en @@ -91,8 +91,8 @@ a directory DirectoryIndex index.html

-

then a request for http://myserver/docs/ would - return http://myserver/docs/index.html if it +

then a request for http://example.com/docs/ would + return http://example.com/docs/index.html if it exists, or would list the directory if it did not.

Note that the documents do not need to be relative to the