このチュートリアルで提案されている方法で Pow と Apache をセットアップしました。Myhttpd-vhosts.conf
には次のエントリが含まれます。
<VirtualHost *:80>
DocumentRoot /Users/michael/Dropbox/Development/test
ServerName test.dev
<Directory "/Users/michael/Dropbox/Development/test">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
http://test.dev/に到達したとき、まだ 403 Forbidden が表示されます。
エラーログには次のように記載されています。
[Wed Nov 21 19:24:21 2012] [crit] [client 127.0.0.1] (13)Permission denied: /Users/michael/Dropbox/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Wed Nov 21 19:24:43 2012] [error] [client 127.0.0.1] (13)Permission denied: access to / denied
他の誰かがこの問題を抱えていますか?