Hi,
If you have just one vhost with a docroot /var/www/html/abc, then you cannot visit pages in directories above the docroot (like /var/www/html/xyz)
You can create a default vhost, that uses /var/www/html as docroot and then you can access
http://ip/xyz. You can use the following before the abc vhost definition:
Code:
<VirtualHost _default_:80>
DocumentRoot /var/www/html
...
</VirtualHost>