From 5422cc12ca099d35cf39f255dbd1301e9eba7f86 Mon Sep 17 00:00:00 2001 From: Daniel Gruno Date: Wed, 4 Jul 2012 08:30:37 +0000 Subject: [PATCH] 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 --- docs/manual/mod/core.xml | 9 +++++++++ 1 file changed, 9 insertions(+) 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:

-- 2.47.3