2012-01-05 116 views
0

我在Apache2中遇到问题。我在/ var/www中将我的根目录更改为某个文件夹。我在/ html文件夹下有php文件。每当我尝试使用链接在Web浏览器的/ html文件夹下打开任何文件时,它都不会显示任何内容。Apache2读取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

您忘记了解您的错误日志。