From: Rich Bowen Date: Wed, 29 Apr 2026 18:29:35 +0000 (+0000) Subject: core: Fix 'any sequences' -> 'any sequence' in Directory/Files/Location wildcard... X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=5ff6c74bec909344bd70cbeea3d102c13e57be27;p=thirdparty%2Fapache%2Fhttpd.git core: Fix 'any sequences' -> 'any sequence' in Directory/Files/Location wildcard docs (Bug 65055) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1933518 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index 4d143b69b8..10d857046a 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -841,7 +841,7 @@ named file-system directory, sub-directories, and their contents. in a directory context may be used. Directory-path is either the full path to a directory, or a wild-card string using Unix shell-style matching. In a wild-card string, ? matches - any single character, and * matches any sequences of + any single character, and * matches any sequence of characters. You may also use [] character ranges. None of the wildcards match a `/' character, so <Directory "/*/public_html"> will not match @@ -1955,7 +1955,7 @@ filenames

The filename argument should include a filename, or a wild-card string, where ? matches any single character, - and * matches any sequences of characters.

+ and * matches any sequence of characters.

<Files "cat.html"> # Insert stuff that applies to cat.html here @@ -3168,7 +3168,7 @@ URLs just as you would for origin requests.

The URL may use wildcards. In a wild-card string, ? matches - any single character, and * matches any sequences of + any single character, and * matches any sequence of characters. Neither wildcard character matches a / in the URL-path.

Regular expressions