##################### Website1 Start ###################
<VirtualHost *:80>
ServerAdmin webmaster@website1.com
DocumentRoot c:/web/website1/htdocs
ServerName website1.com
ServerAlias [URL unfurl="true"]www.website1.com[/URL]
ErrorLog c:/web/website1/logs/error_log
CustomLog c:/web/website1/logs/access_log common
<Directory "c:/web/website1/htdocs">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ScriptAlias /cgi-bin/ "/c:/web/website1/cgi-bin/"
<Directory "c:/web/website1/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>