아파치 2.2와 php-fpm을 설치했습니다. httpd.conf에서:
DocumentRoot "/var/www/local.site/public_html
<Directory />
AllowOverride None
Order Deny,Allow
Deny from all
</Directory>
<Directory "/php5-fcgi/">
Order Deny,Allow
Allow from 127.0.0.1
Allow from ::1
#Allow from all
</Directory>
<Directory /var/www/local.site/public_html>
Order Allow,Deny
Deny from all
</Directory>
*.php 및 html 파일의 실행을 허용하지만 디렉토리 수신을 거부하는 방법은 무엇입니까? 왜냐하면 내가 무엇을 하든 /php5-fcgi/, *.php를 거부하거나 디렉토리 읽기를 허용하기 때문입니다.