I made the changes just as you instructed but Apache will not turn on. Here is an example of the hpptd.config file. I copied the orginal httpd.config file just in case. Apache was working fine until I tried to add VirtualHost. The reason that I am trying to run VirtualHost is that when I type in the Url it goes to my router admin. I am using a dns service(zoneedit) and the url is routed to my Wan ip and I am wondering if the Virtual host is the right way to go about routing that to my lan ip.
#
# Use name-based virtual hosting.
#
#NameVirtualHost *:80
NameVirtualHost *:80
<VirturalHost *:80>
ServerName www.owpt.biz
ServerAlias owpt.biz
DocumentRoot C:\wamp\www\owpt
<VirtualHost>
<VirturalHost *:80>
ServerName mail.owpt.biz
DocumentRoot C:\wamp\www\mail
<VirtualHost>
<VirturalHost *:80>
ServerName ftp.owpt.biz
DocumentRoot C:\wamp\www\ftp
<VirtualHost>
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#<VirtualHost *:80>
# ServerAdmin
webmaster@dummy-host.example.com# DocumentRoot /www/docs/dummy-host.example.com
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>