The 'It Works' page is a single .html file located in your htdocs folder. You have two options:
- replace the default apache index.htm(l) folder with your own index file
- change your http.conf like:
Code:
<VirtualHost 127.0.0.1>
ServerName localhost
DocumentRoot 'C:\wamp\www\my_site_folder'
</VirtualHost>
You then need to save the http.conf and restart apache. You can restart apache using the WAMP tools, or you may want to try the command line
Code:
exec("C:\wamp\wampmanager.exe -restart");
or restart your computer.
BTW, you are not too annoying, SitePoint is a place for people to learn and share knowledge. You have some challenges that you are trying to sort out, you demonstrate that you are trying to troubleshoot the problem yourself. Feel free to ask more questions if we can be of service.
Regards,
Steve
Bookmarks