S4UUser
Registered User
Hallo, ich habe ein ziemliches Problem..
Auf meinem V-Server von Server4You will htaccess einfach nicht laufen ich bekommen immer einen Fehler (beim aufrufen eines Verzeichnisses z.B.) der Server sei falsch konfiguriert, wenn ich eine htaccess Datei in dieses Verzeichnis packe.
Meine httpd.conf scheint aber O.K. zu sein:
Meine confixx_vhost.conf sieht so aus (Auszug)
Als Test .htaccess-Datei nehme ich:
Woran kann das liegen? Schonmal danke!
Auf meinem V-Server von Server4You will htaccess einfach nicht laufen ich bekommen immer einen Fehler (beim aufrufen eines Verzeichnisses z.B.) der Server sei falsch konfiguriert, wenn ich eine htaccess Datei in dieses Verzeichnis packe.
Meine httpd.conf scheint aber O.K. zu sein:
Code:
<Directory "/var/www/html">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs-2.0/mod/core.html#options
# for more information.
#
Options Includes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
Meine confixx_vhost.conf sieht so aus (Auszug)
Code:
AllowOverride Options
AllowOverride Indexes AuthConfig Limit FileInfo
Options Indexes FollowSymLinks
Options -FollowSymLinks -SymLinksIfOwnerMatch +Includes
</Directory>
<Directory "/var/www/web1/html">
Options +Indexes +FollowSymLinks
</Directory>
Als Test .htaccess-Datei nehme ich:
Code:
RewriteEngine on
Options +FollowSymlinks
RewriteBase /
RewriteRule ^(.*)(\.html?)$ index\.php?key=$1 [L]
Woran kann das liegen? Schonmal danke!