Skip to content

Instantly share code, notes, and snippets.

@ysasaki
Last active August 29, 2015 13:56
Show Gist options
  • Save ysasaki/9338957 to your computer and use it in GitHub Desktop.
Save ysasaki/9338957 to your computer and use it in GitHub Desktop.
httpd 2.4.6でmod_access_compatを読み込んでいても403になる
# 動かない
<Directory "/hoge">
Order deny,allow
Deny from all
Allow from all
</Directory>
# 動く
<Directory "/hoge">
Require all granted
</Directory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment