Adam Williams wrote:
Davide Bianchi wrote:
Adam Williams wrote:
Is there a way or a command like documentroot but points to a file
instead of a directory?
No. You can use the DirectoryIndex directives to specify which file to
consider the 'main' page (in place of index.html). But the DocRoot is a
directory.
Davide
so basically the only solution is to use a documentroot of /pubs/ma
and /pubs/jmh and move ma.html to /pubs/ma/index.html and jmh.html to
/pubs/jmh/index.html?
If you REALLY want multiple vhosts to share the same DocumentRoot, set
the following:
<VirtualHost *>
ServerName msarchaeology.com
ServerAlias *.msarchaeology.com
DocumentRoot /var/www/sites/mdah-live/pubs
DirectoryIndex ma.html
UserDir disable
</VirtualHost>
<VirtualHost *>
ServerName journalmshistory.com
ServerAlias *.journalmshistory.com
DocumentRoot /var/www/sites/mdah-live/pubs
DirectoryIndex jmh.html
UserDir disable
</VirtualHost>
<VirtualHost *>
ServerName journalmshistory.org
ServerAlias *.journalmshistory.org
DocumentRoot /var/www/sites/mdah-live/pubs
DirectoryIndex jmh.html
UserDir disable
</VirtualHost>
--
Justin Pasher
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]