I have 3 virtual hosts set up like this:<VirtualHost *:80>ServerName www.example.comServerAlias example.comDocumentRoot /var/www/html/exampleErrorLog /var/www/html/example/error.logCustomLog /var/www/html/example/requests.log combined</VirtualHost><VirtualHost *:80>ServerName www.site1.example.comServerAlias site1.example.comDocumentRoot /var/www/html/site1ErrorLog /var/www/html/site1/error.logCustomLog /var/www/html/site1/requests.log combined</VirtualHost><VirtualHost *:80>ServerName www.site2.example.comServerAlias site2.example.comDocumentRoot /var/www/html/site2ErrorLog /var/www/html/site2/error.logCustomLog /var/www/html/site2/requests.log combined</VirtualHost>httpd.conf has the following uncommented:NameVirtualHost *:80and the following commented#ServerName www.example.com:80My DNS has A recordsexample.com -> myIP*.example.com -> myIPmyIP is the same for both records.site1.example.com works fine and goes to the correct site.site2.example.com works fine and goes to the correct site.example.com does not work and gets into a redirect loop.What do I need to configure to get example.com to work ?Thanks,Warren Bell