
September 7th, 2000, 05:03 PM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
Start here -> http://www.apache.org/docs/mod/core.html#allowoverride
Within <VirtualHost 123.456.7.89>, you need to have the following:
<Directory "/host/domains/www.foobar.com">
Options All MultiViews
AllowOverride All
# or AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>
|