error 404 und Options not allowed here

All about webserver configurations, PHP and databases.

Moderator: Thorsten

Post Reply
Thorsten
Posts: 15559
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: error 404 und Options not allowed here

Post by Thorsten »

Hi,

dein Apache erlaubt keine "Options" in der .htaccess Datei. In der httpd.conf muss das in etwa so aussehen:

Code: Select all

<Directory /var/www/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
Post Reply