httpd.conf
<Directory />
    AllowOverride none
    #Require all denied 注释这句
    Allow from all
    Require all granted
</Directory>
<Directory "${INSTALL_DIR}/www/">
 #Require local 注释这句
    Require all granted  增加这句
httpd-vhosts.conf
 <Directory "${INSTALL_DIR}/www/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    #Require local        注释这句
    Require all granted 增加这句
  </Directory>
