スポンサーリンク

【Apache】authz_core:error apache 2.4 エラー

apache 2.4 にて下記の構文は変更になったようで
下記のように記述すると 上記のようにアクセスログに authz_core:error
と表示され 403 Forbidden でアクセスが拒否されます。

下記、2.2 での書き方。
Order deny,allow
Deny from all
Allow from 192.168.1.0/24
Allow from 10.0.0.0/24

対応方法としては、2.4 から書き方が変わっただけなので、
書き方を修正します。

apache の ドキュメントのサンプルに沿って変更すれば、
問題なくアクセスできるようになります。

———————————————————————-
2.2

Order deny,allow
Deny from all

2.4
Require all denied

———————————————————————-

2.2
Order allow,deny
Allow from all

2.4
Require all granted

———————————————————————-

2.2
OrderDeny,AllowDeny from all
Allow from example.org

2.4
Require host example.org

———————————————————————-

タイトルとURLをコピーしました