<VirtualHost *:80>
ServerAdmin 你的IP地址
DocumentRoot "D:\WWWROOT\NoSite"
DirectoryIndex index.html index.htm
<Directory "D:\WWWROOT\NoSite">
AllowOverride None
Options Indexes FollowSymLinks
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>
这样通过IP,或者没有在配制时添加的域名就直接访问到NoSite目录下面,你可以放个提示文件,或者把 Allow from all 修改为 Deny from all 禁止访问。