我目前正在将我的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
。此配置是否正确迁移?
答案 0 :(得分:0)
由于只有一条规则,根本不需要Satisfy all
(在Apache-2.2和Apache-2.4中都不需要)。否则迁移看起来没问题。