|
发表于 2003-7-13 12:17:37
|
显示全部楼层
控制方法:
<Directory /var/www/html/internal>
order allow,deny
allow from .example.com
</Directory>
The order statement can take two argument:order allow,deny and order deny,allow .
order allow,deny :
allows explicitly allowed cilents,denies everyone else;
clients match by both allow and deny are denied
order deny,allow :
denies explicitly denied clients,allows everyone else,
clients matched by bothallow and deny are allowed |
|