Virtual Hosts in Windows under WAMP
Do you want to call your localhost websites from a webbrowser using nice URLs like: mysite.dev or somethingelse.dev? Here’s a way how to do this under Windows.
First edit your Apache’s httpd.conf file. Look for “DocumentRoot” and then change into something like this (“e:/wamp/www” is the path to my sites):
DocumentRoot "e:/wamp/www/"
NameVirtualHost 127.0.0.1
<VirtualHost 127.0.0.1>
[...]
How to test sending e-mails on WAMP?
Most of the websites I made are hosted on Linux based servers, but I develop them on Windows OS.
I use WampServer which comes with almost all I need- Apache, PHP and MySql. However it doesn’t come with any mail sending tool (the same case applies to other WAMP packages like KrasnalServ)…