在移动设备 - WAMP SERVER中无法访问除localhost主页之外的虚拟主机

I am trying to access my web app from my phone connected via same router but I am being able to only access the localhost home page but when I click on the respective virtualhost, I am not being able to access the page.

I have setup my virtual host through the interface provide in wamp server.

Wamp Server Version: 3.0.6

httpd-vhosts.conf

# Virtual Hosts
#
<VirtualHost *:80>
    ServerName localhost
    DocumentRoot D:/wamp64/www
    <Directory  "D:/wamp64/www/">
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        #Require local
        Require all granted
    </Directory>
</VirtualHost>
#

<VirtualHost *:80>
    ServerName transmit
    DocumentRoot "d:/wamp64/www/transmit_renewed"
    <Directory  "d:/wamp64/www/transmit_renewed/">
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        #Require local
        Require all granted
    </Directory>
</VirtualHost>