Prev / Next / /home/pochi/ChangeLog

apache 2.4 ではアクセス制御の方法の変わっている[apache]

2013-10-15

サーバ交換作業(--[2013-10-14-1])のため、apache をバージョンアップ。

apache 2.4 からは、Orderによるアクセス制限は使えなくなって、
Requireを使うようになってるのね。

Order allow,deny
Allow from all


今までこう書いてたのは以下のように修正が必要。

Require all granted


互換性確保のため、mod_access_compat を使えば、Order も使えるらしいけどね。


参考)
おほ。2.4系じゃ .htaccess ファイルの許可の仕方も変わってるんだなあ
http://blog.netandfield.com/shar/2012/10/24-htaccess.html

Apache2.4/Tips
http://www.sssc.cc/wiki/index.php?Apache2.4%2FTips

permlink