XAMPP子域输出错误的目录

I'm trying to setup a subdomain on my XAMPP server, and I have looked through every Stackoverflow thread without any success. skane.localhost.com presents the same page as localhost.com

Here are my relevant files:

hosts file:

127.0.0.1 localhost
127.0.0.1 skane.localhost

httpd-vhosts.conf:

<VirtualHost *:80>
     DocumentRoot D:\xampp\htdocs
     ServerName localhost
</VirtualHost>

<VirtualHost *:80>
     DocumentRoot D:\xampp\htdocs\skane
     ServerName skane.localhost.com
</VirtualHost>

NameVirtualHost *:80 is commented out!

Thanks for any help