Davide,
Thank you for your reply.
Do I understand correctly that I'm on the right track with VHosts?
If so, then I'm encouraged that I actually understood _something_ in the
Apache documentation. At the risk of shaking your devout belief therein, the
problem is not understanding per se, but not knowing whether one is reading
the right bit!
Herbert
Software Documentation Consultant
"Davide Bianchi" <davideyeahsure DeleteThis @onlyforfun.net> wrote in message
news:2gdupuF189r4U1@uni-berlin.de...
> Herbert Pocket <nowhere DeleteThis @thingy.com> wrote:
> > local-absolute references starting at root, i.e. of the form
> > "/dir/page.htm"
>
> There is no such things as 'local-absolute' they are RELATIVE or they
> aren't...
>
> , however "/" goes all the way up to the Apache root, rather
> > than the site root.
>
> It sounds like your Apache has lost his VHost reference.
>
> > How do I configure my development Apache such that Site 1 and Site 2
each
> > has its own "/".
>
> Using VHosts... inanutshell:
>
> NameVirtualHosts *
>
> <VirtualHost *>
> ServerName thefirstdomain
> DocumentRoot /wherever/
> <Directory "/wherevere">
> Options ...
> Order allow,deny
> Allow from all
> </Directory>
> </VirtualHost>
>
> <VirtualHost *>
> ServerName theseconddomain
> DocumentRoot /wherever2/
> <Directory "/wherevere2">
> Options ...
> Order allow,deny
> Allow from all
> </Directory>
> </VirtualHost>
>
> See the documentation, and this time try to understand what it says.
> See the examples in your httpd.conf
>
> Davide
>
> --
> | The problem with engineers is that they tend to cheat in order to get
> | results.
> |
> |<!-- ~MESSAGE_AFTER~ -->
>> Stay informed about: Two sites from one Apache