With Apache you have to create a Virtual Host for the folder
you want to serve file from.
You need to open up your httpd.conf file, which can be found
in C:\Program Files\Apache Group\Apache2\conf or something
similar:-
Then add the following and restart apache:-
<VirtualHost *:[portNumber]>
DocumentRoot c:\path\to\your\websites
<Directory />
Options FollowSymLinks MultiViews ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Then you can access from
http://127.0.0.1:[portNumber
you will also have to add another Listen for the port you have
selected search for Listen in httpd.conf and add Listen
[portNumber].
Just in case you wondered [portNumber] has to be a number and
a free port on your machine.