在apache的配置文件httpd.conf里定义了对网站根默认的访问权限
#
directory />
options followsymlinks
allowoverride none
order deny,allow
deny from all
directory>
改为
directory />
options indexes followsymlinks
allowoverride none
directory>
问题解决
http://www.bkjia.com/phpjc/654278.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/654278.htmltecharticle在apache的配置文件httpd.conf里定义了对网站根默认的访问权限 # directory / options followsymlinks allowoverride none order deny,allow deny from all / directory 改...