My goal is to access a WAMP Site from my phone via Wi-Fi. I am using WAMP 3
According to an answer here in Stack Overflow, I should just worry about the httpd-vhost.conf file in apache and add my IP Address like this:
```<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
Require ip 192.x.x #I have added this line
</Directory>
</VirtualHost>```
And so I did, the next step I did is to allow my port, which is port 8080 by the way, through Windows Firewall. And so I did.
Now, how can I access it from my phone? I've tried using the IPV4 address of my phone, like this: http://192.x.x.x:8080/ but can't access my WAMP Homepage. Can anyone please help me out?