Currently on my Windows 7 machine, it is C:\\Program Files (x86)\\EasyPHP-5.3.8.1\\www
I want to point it into another location on drive D, says D:\\c
You need to right click on the icon on the Easyphp icon on the taskbar and select configuration->Apache. This will open httpd.conf in a notepad window.
You need to modify it as follows:
DocumentRoot "D:/code"
(...)
# DocumentRootDirectory
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
(...)
NameVirtualHost 127.0.0.1
DocumentRoot "D:/code/"
ServerName localhost