| Saturday 06 September 2003 3:24:06 am 
                                                                 look at www.apache.org to find out how to setup your webserver. I think you will have to setup a virtual host for each domain. Here's what I put in my local httpd.conf for Apache 1.3 to run 4 development domains on my local box: 
*********************************************#
 # 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 *>
 # ServerAdmin [email protected]
 # 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>
 # Virtual Hosts System VL Local 
<VirtualHost 127.0.0.1>ServerName priv.system_vl.local
 DocumentRoot "C:/Programme/ApacheGroup/Apache/htdocs/system_vl/Exponential"
 ErrorLog logs/system_vl_error_log
 TransferLog logs/system_vl_access_log
 
 Options FollowSymLinksRewriteLog logs/system_vl_rewrite_log
 RewriteEngine On
 
 #V.L 13-03-03: Rewrite rules for our 3 SSL-domains within the scope of this VH:#1. Do not redirect inline-requests for html-rsources like css, js, images
 #2. redirect non-inline URIs with unknown SSL host name to public non-SSL VH
 #3. redirect non-inline requests that do not target one of our SSL-directories to public non-SSL VH
 RewriteCond %{HTTP_HOST} ^priv.system_vl.local$
 RewriteCond %{REQUEST_URI} ^/(admin|members).*
 RewriteRule !\.(gif|jpg|png|js|css|html)$ /index.php [L]
 RewriteCond %{REQUEST_URI} !\.(gif|jpg|png|js|css|html)$
 RewriteRule .* http://www.system_vl.local/ [R]
 
 <Directory "C:/Programme/ApacheGroup/Apache/htdocs/system_vl/Exponential">Order deny,allow
 allow from all
 </Directory>
 </VirtualHost>
 
<VirtualHost 127.0.0.1>ServerName www.system_vl.local
 DocumentRoot "C:/Programme/ApacheGroup/Apache/htdocs/system_vl/Exponential"
 ErrorLog logs/system_vl_error_log
 TransferLog logs/system_vl_access_log
 
 Options FollowSymLinksRewriteLog logs/system_vl_rewrite_log
 RewriteEngine On
 #V.L 13-03-03: Redirect any resource request except special inlined file resources through our php-processor
 RewriteRule !\.(gif|jpg|png|js|css|html)$ /index.php
 
 <Directory "C:/Programme/ApacheGroup/Apache/htdocs/system_vl/Exponential">Order deny,allow
 allow from all
 </Directory>
 </VirtualHost>
 # Virtual Hosts Leportal Local 
<VirtualHost 127.0.0.1>ServerName priv.leportal.local
 DocumentRoot "C:/Programme/ApacheGroup/Apache/htdocs/leportal/Exponential"
 ErrorLog logs/leportal_error_log
 TransferLog logs/leportal_access_log
 
 Options FollowSymLinksRewriteLog logs/leportal_rewrite_log
 RewriteEngine On
 
 #V.L 13-03-03: Rewrite rules for our 3 SSL-domains within the scope of this VH:#1. Do not redirect inline-requests for html-rsources like css, js, images
 #2. redirect non-inline URIs with unknown SSL host name to public non-SSL VH
 #3. redirect non-inline requests that do not target one of our SSL-directories to public non-SSL VH
 RewriteCond %{HTTP_HOST} ^priv.leportal.local$
 RewriteCond %{REQUEST_URI} ^/(admin|members).*
 RewriteRule !\.(gif|jpg|png|js|css|html)$ /index.php [L]
 RewriteCond %{REQUEST_URI} !\.(gif|jpg|png|js|css|html)$
 RewriteRule .* http://www.leportal.local/ [R]
 
 <Directory "C:/Programme/ApacheGroup/Apache/htdocs/leportal/Exponential">Order deny,allow
 allow from all
 </Directory>
 </VirtualHost>
 
<VirtualHost 127.0.0.1>ServerName www.leportal.local
 DocumentRoot "C:/Programme/ApacheGroup/Apache/htdocs/leportal/Exponential"
 ErrorLog logs/leportal_error_log
 TransferLog logs/leportal_access_log
 
 Options FollowSymLinksRewriteLog logs/leportal_rewrite_log
 RewriteEngine On
 #V.L 13-03-03: Redirect any resource request except special inlined file resources through our php-processor
 RewriteRule !\.(gif|jpg|png|js|css|html)$ /index.php
 
 <Directory "C:/Programme/ApacheGroup/Apache/htdocs/leportal/Exponential">Order deny,allow
 allow from all
 </Directory>
 </VirtualHost>
 # Virtual Hosts GTCT Local 
<VirtualHost 127.0.0.1>ServerName priv.gtct.local
 DocumentRoot "C:/Programme/ApacheGroup/Apache/htdocs/gtct/Exponential"
 ErrorLog logs/gtct_error_log
 TransferLog logs/gtct_access_log
 
 Options FollowSymLinksRewriteLog logs/gtct_rewrite_log
 RewriteEngine On
 
 #V.L 13-03-03: Redirect any resource request except special inlined file resources through our php-processorRewriteRule !\.(gif|jpg|png|js|css|html)$ /index.php
 
 <Directory "C:/Programme/ApacheGroup/Apache/htdocs/gtct/Exponential">Order deny,allow
 allow from all
 </Directory>
 </VirtualHost>
 
<VirtualHost 127.0.0.1>ServerName www.gtct.local
 DocumentRoot "C:/Programme/ApacheGroup/Apache/htdocs/gtct/Exponential"
 ErrorLog logs/gtct_error_log
 TransferLog logs/gtct_access_log
 
 Options FollowSymLinksRewriteLog logs/gtct_rewrite_log
 RewriteEngine On
 #V.L 13-03-03: Redirect any resource request except special inlined file resources through our php-processor
 RewriteRule !\.(gif|jpg|png|js|css|html)$ /index.php
 
 <Directory "C:/Programme/ApacheGroup/Apache/htdocs/gtct/Exponential">Order deny,allow
 allow from all
 </Directory>
 </VirtualHost>
 # Virtual Hosts BSZ Local 
<VirtualHost 127.0.0.1>ServerName priv.bsz.local
 DocumentRoot "C:/Programme/ApacheGroup/Apache/htdocs/showroom/bsz/Exponential"
 ErrorLog logs/bsz_error_log
 TransferLog logs/bsz_access_log
 
 Options FollowSymLinksRewriteLog logs/bsz_rewrite_log
 RewriteEngine On
 #V.L 13-03-03: Redirect any resource request except special inlined file resources through our php-processor
 RewriteRule !\.(gif|jpg|png|js|css|html)$ /index.php
 
 <Directory "C:/Programme/ApacheGroup/Apache/htdocs/showroom/bsz/Exponential">Order deny,allow
 allow from all
 </Directory>
 </VirtualHost>
 
<VirtualHost 127.0.0.1>ServerName www.bsz.local
 DocumentRoot "C:/Programme/ApacheGroup/Apache/htdocs/showroom/bsz/Exponential"
 ErrorLog logs/bsz_error_log
 TransferLog logs/bsz_access_log
 
 Options FollowSymLinksRewriteLog logs/bsz_rewrite_log
 RewriteEngine On
 #V.L 13-03-03: Redirect any resource request except special inlined file resources through our php-processor
 RewriteRule !\.(gif|jpg|png|js|css|html)$ /index.php
 
 <Directory "C:/Programme/ApacheGroup/Apache/htdocs/showroom/bsz/Exponential">Order deny,allow
 allow from all
 </Directory>
 </VirtualHost>
 |