.htaccess
Submitted by floh on Mo, 2010-02-08 21:56
Htaccess mit Authentifizierung an einer MySQL basierten Drupal-Installation.
Installation des benötigten Apache Moduls
aptitude install libapache2-mod-auth-mysql
Aktivierung des authmysql-Moduls
a2enmod auth_mysql
Submitted by floh on Sa, 2008-12-06 20:44
Damit die von Drupal benutzte .htaccess funktioniert legen wir die Datei /etc/apache2/conf.d/drupal.conf mit folgendem Inhalt an:
<Directory /home/foobar/drupal/>
Options +FollowSymLinks Indexes
AllowOverride All
order allow,deny
allow from all
</Directory>
Options +FollowSymLinks Indexes
AllowOverride All
order allow,deny
allow from all
</Directory>

