apache支持include的方法

在网站根目录的<Directory>说明中保证有如下内容:
<Directory "d:\wwwroot">
    Options Indexes FollowSymLinks MultiViews Includes
   
    AllowOverride All
    Order allow,deny
    Allow from all
   
    AddType text/html .html
    AddType text/html .htm
    AddOutputFilter INCLUDES .html
    AddOutputFilter INCLUDES .htm
</Directory>

[ 本帖最后由 cegod 于 2008-4-9 22:29 编辑 ]