I have set up 2 virtual hosts, sharing the same IP address:
<VirtualHost *>
DocumentRoot "/var/www/vhosts/website1.com/httpdocs"
ServerName www.website1.com
</VirtualHost>
<VirtualHost *>
DocumentRoot "/var/www/vhosts/website2.com/httpdocs"
ServerName www.website2.com
</VirtualHost>
If I type www.website2.com, the files shown are always by www.website1.com
I am correctly restarting Apache after each change.
I can't understand why this is happening.