*
specifies 0 or more of any character.
?
specifies exactly one instance of any character.
foo*
matches foo
, fooa
,and
foobar
, but does not match afoo
.
/*/.??*
matches any substring which contains /. followed
by two characters. This pattern is useful for disabling UNIX hidden
files such as /foo/bar/.htaccess.
Return to configuration overview
httpd@ncsa.uiuc.edu