localhost
하위 디렉토리에는 액세스 할 수 있지만 하위 디렉토리에는 액세스 할 수 없습니다index.html
내 default conf
모습은 :
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/*/>
Allow from None
Order allow,deny
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
read/edit/write
디렉토리에 대한 액세스를 허용 한 후에도 Forbidden 오류가 표시됩니다. 포럼에서 가능한 모든 방법을 시도했지만 효과가 없었습니다. 누구나 해결책이 있습니다.
위의 사이에 sub directory
액세스를 위해 무언가를 시도했습니다 .
<Directory /var/www/*/>
Allow from None
Order allow,deny
</Directory>
가능한 해결책을 제안하십시오. 감사!