apache配置文件:DocumentRoot问题!!!

apache配置文件:DocumentRoot问题!!!

下面是我apache配置文件的部门内容:


DocumentRoot "/usr/local/apache2.0.59/htdocs"

<VirtualHost *:80>
    DocumentRoot /www/video
    <Directory /www/video>
        Options FollowSymLinks
        Options -Indexes
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    ServerName  v.116.com
</VirtualHost>

我在apache设置了虚拟主机,虚拟主机的目录为/www/video,客户端对虚拟主机的访问一切OK,
但我在全局仍然保留了DocumentRoot "/usr/local/apache2.0.59/htdocs"目录,
为什么我访问服务器IP:http://x.x.x.x的时候出现
HTTP 错误 403 - 禁止访问

怎么设置才能让我可以直接IP访问"/usr/local/apache2.0.59/htdocs下的文件,和虚拟机独立,谢谢!
<VirtualHost *:80>
    ServerName *
   DocumentRoot "/usr/local/apache2.0.59/htdocs"
</VirtualHost>
楼上的正解,呵呵
servername *