Just installed Apache on a new server... need help

They have: 68 posts

Joined: Jun 2006

I just installed Apache 2.2... but saw that an .htaccess doc i configured on a different server no longer works on this server.

Below is my .htaccess code. The portions in blue are what i'm figuring is the problem... but i don't know how to resolve it.

# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName www.foothillsbaptist.org
AuthUserFile
/home/footh4/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/footh4/public_html/_vti_pvt/service.grp
Options +Indexes
   IndexOptions FancyIndexing SuppressDescription SuppressHTMLPreamble FoldersFirst
   HeaderName /header.htm
   ReadmeName /footer.htm
   IndexIgnore header.htm footer.htm .htaccess direclogo.gif
suPHP_ConfigPath /home/footh4/public_html
'

Funny thing is, the default directory-index is different on this new apache server from what it used to be.

Here is the old server:

Here is the new:

Any ideas? Thanks.