Problem: I was working on my local machine where I had to setup my system to receive webhook/callback for an application. I had setup Vhost like myapp.test and wanted to receive the request using Ngrok. I started the tunnel using ngrok http myapp.test:80 but the tunnel URL provided by Ngrok took me to WAMP dashboard page instead of my application vhost.

Solution was to run command a bit differently, here is the command that worked for me

ngrok http -host-header=rewrite myapp.test:80