error.log 是空的,当我连接到该域时,出现超时错误。
NameVirtualHost 23.23.23.23
<VirtualHost 23.23.23.23>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/
RewriteLog /var/log/rewrite
RewriteLogLevel 9
<Directory />
Options FollowSymLinks
Order allow,deny
Allow from all
ErrorDocument 404 /hi.html
ErrorDocument 403 /hi.html
ErrorDocument 500 /hi.html
</Directory>
<Directory "/var/www/">
AllowOverride AuthConfig FileInfo Options
# The Options below is an example. Use what you deem is necessary.
Options MultiViews SymLinksIfOwnerMatch IncludesNoExec
IndexIgnore *
Order allow,deny
allow from all
ErrorDocument 404 /hi.html
ErrorDocument 403 /hi.html
ErrorDocument 500 /hi.html
</Directory>
ErrorLog /var/log/apache2/error.log
LogLevel crit
</virtualhost>
我已经重置了我的服务器。DNS 工作正常。但是每当它超时时,应该会记录一些错误,但什么都没有!所以我不知道如何解决这个问题。