为什么使用mod_auth_mysql时,autoindex功能就不显示文件?

Apache/2.0.63,mod_auth_mysql-3.0.0

登录通过后,目录下的文件全部不显示

但将配置里认证的配置去掉,文件就能显示出来?

是否是某某配置不正确?还是加什么其他配置参数?

哪位给点指教,谢谢

[Copy to clipboard] [ - ]
CODE:
        Alias /share/ "/data/ftp/"     
                <Directory "/data/ftp/">
                        authname "User ID an Password"
                        authtype basic
                        require valid-user
                        AddDefaultCharset   GB2312
                        Options MultiViews Indexes                 
                        Options Indexes FollowSymlinks
                        IndexOptions HTMLTable DescriptionWidth=* NameWidth=* FoldersFirst FancyIndexing
                        AllowOverride AuthConfig
                        Order allow,deny
                        Allow from all
                        HeaderName header.html
                        ReadmeName readme.html
                        IndexIgnore header.html readme.html
                </Directory>