2012-01-05 45 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

您忘記了解您的錯誤日誌。