From: Eric Covener Even though the list of options that may be used in .htaccess files
+ can be limited with this directive, as long as any Example: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
+ 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.
+
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