From: Daniel Gruno Date: Wed, 4 Jul 2012 08:30:37 +0000 (+0000) Subject: Add examples of that don't involve regex. X-Git-Tag: 2.5.0-alpha~6680 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee54554df17a87dcd70504d1262915146baa1985;p=thirdparty%2Fapache%2Fhttpd.git Add examples of that don't involve regex. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1357167 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index dc7b02eeb0c..d7a6699de75 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -1657,6 +1657,15 @@ filenames

The filename argument should include a filename, or a wild-card string, where ? matches any single character, and * matches any sequences of characters. + +<Files "cat.html"> + # Insert stuff that applies to cat.html here +</Files> + +<Files "?at.*"> + # This would apply to cat.html, bat.html, hat.php and so on. +</Files> + Regular expressions can also be used, with the addition of the ~ character. For example: