Description
Use this command to allow indexing of the documents
with URL matching the given pattern.
The first three optional parameters describe comparison style.
The default values are
Match,
Case, String
(case insensitive string pattern match with
? and *
wildcards meaning one character
and
any number of characters
correspondingly).
Use Case or NoCase
values to choose between case insensitive
or case sensitive
comparison styles respectively.
Use Regex to choose
regular expression comparison.
Use String to choose
string with wildcards comparison.
Note:
The characters ? and *
have special meanings in the String match type.
Use the Regex comparison style to describe
URL patterns containing these characters.
String match is faster than
Regex. Use String
when it is possible.
You can use multiple arguments in the
same Allow command.
Note that mnoGoSearch
automatically adds an
Allow regex .*
command after reading the configuration file. It means
it allows everything that is not disallowed.