|
the last two people told you how to make a site use the same direcotry I think you want to use the same dir over more than one domain so for that you use: Alias
look it up on the apache site
in the <VirtualHost>
for each domain add
Alias /path/todir/ /dir/
/path/to/dir/ being where it is on disk and /dir/ being what directory you want it to show as on the web ie domain.com/dirname/
|