XAMPP virtual host always redirecting me to different place

I want to create a virtual host but whenever I try to access it, it redirects me the xampps/dashboard page.

Here is my httpd-vhosts.conf:

<VirtualHost *:80>
ServerName something.loc
DocumentRoot "C:/xampp/htdocs/master/public"
    <Directory "C:/xampp/htdocs/master/public">
        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory> 
</VirtualHost>

and my etc/hosts file:

127.0.0.1 something.loc

What am I missing?