AH01630: client denied by server configuration:

Apache httpd 2.4 にて
“AH01630: client denied by server configuration:”
エラーが発生した場合の解決方法

Table of Contents

確認

該当する httpd.conf を確認する。
下記の記述は、Apache httpd 2.2 系以前でのアクセス権限の記述方法です。

# Example
<Directory "/var/www/html">
    Order allow,deny
    Allow from all
</Directory>

対処方法

Apache httpd 2.4 系でのアクセス権限の記述へ変更する。

# Example
<Directory "/var/www/html">
    Require all granted
</Directory>

アクセス制限をかける場合の記述方法は、以下になります。

# Example
<Directory "/var/www/html">
    Require ip 111.222.33.44
    Require host *.co.jp
</Directory>

Was this helpful?

0 / 0

コメントを残す 0

Your email address will not be published.