Apache返回默认页面,而不是我的内容

我的网站工作完美,但有时Apache返回默认的HTML页面:

It works! This is the default web page for this server. The web server software is running but no content has been added, yet. 

目前没有configuration和其他设置没有改变。 我查看了日志,发现在这一刻,每秒有很多同时发生的请求。

我有个问题。 Apache可以在重载下显示上面的页面,而不是网站的内容?

或者可能是什么问题?

Apache HTTP服务器将不会根据负载提供不同的内容)。 这似乎是你的VirtualHost上的一些configuration错误,请尝试VirtualHost示例 – Apache HTTP服务器版本2.2 ,请特别注意ServerName并确保正确设置。

你有没有设置你的VirtualHostsconfiguration来处理您的主要网站地址的别名?

 ServerName example.com ServerAlias www.example.com 

如果www不是别名,而有人使用www(反之亦然,不),他们将得到默认的Apache页面。