I am having trouble in making virtual hosts in Apache to work. The virtual hosts were running fine but suddenly it stopped working today. To create virtual hosts I opened the httpd-vhosts file and typed in the configuration like one below:
<VirtualHost hello.dev:80>
ServerAdmin xyz@ty.com
DocumentRoot "H:\www\hello_webservice"
ServerName hello.dev
ServerAlias www.hello.dev
ErrorLog "logs/hello.dev-error.log"
CustomLog "logs/hello.dev-access.log" common
</VirtualHost>
By the way the apache is working since I am able to access htdocs via localhost.