概要
httpd.confでAllowOverride Allにしたのに.htaccessが全然動かない悲しみを解決したのでメモです。
結論
httpd.conf内に設定がひとつだと思うな!!!
普通に行くと
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
    AllowOverride All
だけで終えてしまうのですが、実際は以下の大ボスがいます。
<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>
vimをご利用の方は/AllowOverrideで検索してみましょう。次の検索結果へはnを押せば進めます。きっと幸せになれることでしょう。