I have a windows 7 virtual machine using virtual box. Inside this machine I have a laravel study project. Inside this machine I access this project through url "lara/"
, configured in routes.
I'd like to know how to direct a request from the physical machine url into my virtual machine. What I did was:
etc/hosts
file of the physical machine to point to the virtual machine when the "lara;"
URL is requested. 192.168.56.1 lara/
My process is not working. I know I could use Vagrant but I wanted to know how to do this without this tool.
Is it possible?