This tutorial is for putting your own site in a network of your home, or work. I discovered this at my course, and I have put my sites over the network!
It's super easy, Firstly open the httpd.conf (file to configure apache) and find this lines:
Code:
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
#
#Listen 3000
Listen 127.0.0.1:80
Found it? No? just use the comand find in your editor (it can be notepad++, notepad, php editor, ultraedit....) Found it? haa ok, then you just have to modify the line:
Code:
Listen 127.0.0.1:80
and instead of 127.0.0.1 (wich by the way is the localhost ip) put the ip compatible with your network, much like:
Code:
Listen 192.168.0.1:80
There you go....