So, I have a standalone website on my PC that I want to test in Firefox. I would like to do it offline.
The problem is that I defined the virtual host for the website in the Apache httpad.conf configuration file as follows:
<VirtualHost 127.0.0.1>
DocumentRoot "D:\data\o\WebProjects\website\public"
ServerName website
</VirtualHost>
In online mode, I can go to http: // website / and test it normally. However, it does not work offline. Anyone hack this?
source
share