Mod_rewrite & Confixx

El-Barto

Registered User
Hallo,

auf meinem Server funktioniert das Apache Modul "mod_rewrite" nicht. Unter Confixx habe ich für alle Anbieter unter httpd folgendes eingetragen:
Code:
<Directory "/home/www/##user##/html">
AllowOverride all
Allow from all
</Directory>
Selbst nach einem Server neustart funktioniert es nicht und ich bekomme immer noch einen
Code:
403er:Forbidden
You don't have permission to access / on this server.

Apache/1.3.33 Server at [...] Port 80
Hat jemand eine Idee, woran es liegen könnte?

MfG
El-Barto
 
El-Barto said:
Code:
<Directory "/home/www/##user##/html">
AllowOverride all
Allow from all
</Directory>

Probiere es mal mit folgendem Eintrag:
Code:
<Directory /home/www/##user##/html>
Options +FollowSymLinks +SymLinksIfOwnerMatch
</Directory>
 
Back
Top