【发布时间】:2016-03-22 08:49:55
【问题描述】:
我目前正在将我的 apache 从 2.2.22 升级到 2.4,但仍在为配置更改而苦苦挣扎。
我的 apache 2.2 配置:
<Files ~ "^\.ht">
Order allow,deny
Deny from all
Satisfy all
</Files>
我的 apache 2.4 配置:
<Files ~ "^\.ht">
Require all denied
Satisfy all
</Files>
我不确定我的新 2.4 配置中的 Satisfy all。此配置是否迁移正确?
【问题讨论】:
标签: apache2 apache2.2 apache2.4