2012-01-05 2 views
0

아파치 2에 문제가 있습니다. 내 루트 디렉토리를/var/www와 같은 특정 폴더로 변경했습니다./html 폴더 아래에 php 파일이 있습니다. 링크를 사용하여 웹 브라우저에서/html 폴더 아래의 파일을 열려고하면 아무 것도 표시되지 않습니다.아파치 2 독서 php 파일

내 "기본"파일의 모양입니다.

<VirtualHost *:80> 
ServerAdmin [email protected] 

DocumentRoot /var/www/ 

<Directory /> 
Options FollowSymLinks 
AllowOverride None 
</Directory> 
<Directory /var/www/web/html> 
Options Indexes FollowSymLinks MultiViews 
AllowOverride None 
Order allow,deny 
allow from all 
</Directory> 
# 
#<Directory /var/www/web/> 
#<Directory /home/jenismodi/testFolder/> 
# Options Indexes FollowSymLinks MultiViews 
# AllowOverride None 
# Order allow,deny 
# allow from all 
# </Directory> 

# <Directory /var/www/web/html/> 
#<Directory /home/jenismodi/testFolder/> 
# Options Indexes FollowSymLinks MultiViews 
# 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 

Alias /doc/ "/usr/share/doc/" 
<Directory "/usr/share/doc/"> 
Options Indexes MultiViews FollowSymLinks 
AllowOverride None 
Order deny,allow 
Deny from all 
Allow from 127.0.0.0/255.0.0.0 ::1/128 
</Directory> 

</VirtualHost> 

내가 뭘 잘못 말하고 있는지 알려주시겠습니까?

감사합니다. JM

답변

1

오류 로그를 읽는 것을 잊어 버리는 것입니다.