Why won't this work? All I can get is the first virtual host to work.
NameVirtualHost 192.168.0.3
###################################### IMG.COM.test.com
##############################
<VirtualHost 192.168.0.3>
ServerName img.com.test.com
ServerAdmin
webmaster@test.com
DocumentRoot /www/whatever/htdocs/com
CustomLog /www/whatever/logs/access_log combined
ErrorLog /www/whatever/logs/error_log
UseCanonicalName Off
<Directory /www/whatever/htdocs/com>
Options Indexes
DirectoryIndex index.html index.htm Index.htm Index.html INDEX.HTM
INDEX.HTML
</Directory>
</VirtualHost>
################################################## ##########################
##########
###################################### IMG.test.com
##################################
<VirtualHost 192.168.0.3>
ServerName img.test.com
ServerAdmin
webmaster@test.com
DocumentRoot /www/whatever/htdocs
CustomLog /www/whatever/logs/access_log combined
ErrorLog /www/whatever/logs/error_log
UseCanonicalName Off
<Directory /www/whatever/htdocs>
Options Indexes
DirectoryIndex index.html index.htm Index.htm Index.html INDEX.HTM
INDEX.HTML
</Directory>
</VirtualHost>
################################################## ##########################
#########