Apache 2.4で403エラーが出るときの対処法

Apache 2.2とかだと以下のように設定を指定ました。

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

Apache2.4では以下のように設定をするようです。

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

参考

http://blog.netandfield.com/shar/2012/10/24-htaccess.html

http://httpd.apache.org/docs/current/ja/mod/mod_authz_core.html#require