D. Cooper Stevenson wrote:

> That's correct, albeit inadvertant. http://mwvlug.org would go to the
> server as it is looking for "http://www.mwvlug.org"; to land on MWVLUG's
> site.   

I know you already know this, Cooper, but for the general elucidation
of the masses, the way to configure this in httpd.conf would be to use
ServerAlias.

Given a web server with one IP address and a bunch of virtual hosts,
this would work.

        <VirtualHost *>
          ServerName www.example.com
          ServerAlias example.com *.example.com
          # ... other directives ...
        </VirtualHost>

That will tell Apache to use that vhost for any hostname ending
in example.com.

-- 
Bob Miller                              K<bob>
kbobsoft software consulting
http://kbobsoft.com                     [EMAIL PROTECTED]
_______________________________________________
EuG-LUG mailing list
[EMAIL PROTECTED]
http://mailman.efn.org/cgi-bin/listinfo/eug-lug

Reply via email to