最近从Apache 2.2迁移到2.4。我在为域配置虚拟主机时遇到问题。问题是它无法从web-vhost获取网站的静态内容。我知道在新版本中此配置中有更改。
这是旧版本2.2中的配置
<Directory "/app/web-vhosts/backtoschoolimmunization">
# Options +Includes
IndexOrderDefault Descending Date
AllowOverride None
Order allow,deny
Allow from all
</Directory>
这是我为2.4尝试的新配置,但失败了
<Directory "/app/web-vhosts/backtoschoolimmunization">
# Options +Includes
IndexOrderDefault Descending Date
AllowOverride None
Require all granted
</Directory>