目录属性设置中,主要有下面的选项:
Options:设置在特定目录使用哪些特性,常用的值和基本含义如下:
ExecCGI: 在该目录下允许执行CGI脚本。
FollowSymLinks: 在该目录下允许文件系统使用符号连接。
Indexes: 当用户访问该目录时,如果用户未找到DirectoryIndex指定的主页文件(例如index.html),则返回该目录下的文件列表给用户。
SymLinksIfOwnerMatch: 当使用符号连接时,只有当符号连接的文件拥有者和实际文件的拥有者相同时才能访问。
其他可用值和含义请参阅:http://www.clusting.com/Apache/ApacheManual/mod/core.html#options
AllowOverride:允许存在于.htaccess文件中的指令类型(.htaccess文件名是能改动的,其文件名由AccessFileName指令决定):
None: 当AllowOverride被设置为None时。不搜索该目录下的.htaccess文件(能减小服务器开销)。
All: 在.htaccess文件中能使用所有的指令。
其他的可用值及含义(如:Options FileInfo AuthConfig Limit等),请参看: http://www.clusting.com/Apache/ApacheManual/mod/core.html#AllowOverride
Order:控制在访问时Allow和Deny两个访问规则哪个优先:
Allow:允许访问的主机列表(可用域名或子网,例如:Allow from 192.168.0.0/16)。
Deny:拒绝访问的主机列表。

 

更周详的用法可参看:http://www.clusting.com/Apache/ApacheManual/mod/mod_access.html#order
DirectoryIndex index.html index.htm index.php #主页文件的设置(本例将主页文件设置为:index.html,index.htm和index.php)

注:

防止用户查看目录:Options -Indexes FollowSymLinks MultiViews

允许用户查看目录:Options +Indexes FollowSymLinks MultiViews

实例:


<VirtualHost *:80>
     ServerName apps.hrway.net
     ServerAdmin hrway@chinastone.com.cn
     DocumentRoot 
"/var/www/apps/"
     ErrorLog 
"/var/log/apache2/apps_errors.log"
     CustomLog 
"/var/log/apache2/apps_accesses.log" common
     
<Directory />
          Options FollowSymLinks
          AllowOverride None
          Options Indexes
     
</Directory>
     
<Directory /var/www/apps/>
          #Options Indexes FollowSymLinks MultiViews
          Options 
-Indexes FollowSymLinks MultiViews
          AllowOverride None
          Order allow,deny
          allow from all
     
</Directory>
</VirtualHost>
posted on 2011-04-24 22:41  小炒花生米  阅读(1361)  评论(0编辑  收藏  举报