저는 Pow와 Apache를 this 튜토리얼에서 제안한 방식대로 설정했습니다. 내 httpd-vhosts.conf
에 다음과 같은 항목이 있습니다.PHP 응용 프로그램 용 Apache를 사용하기 위해 pow.cx 설정
<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 금지를 얻고 있습니다.
오류 로그는 말한다 :
[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
다른 사람이 문제가 있었나요?
안녕하세요, 응답 해 주셔서 감사합니다. "drwxr-xr-x 3 michael staff 102 11 월 20 일 17:44 테스트"는 내가 얻은 것입니다. –