Ok, danke, ich dachte dies bezieht sich auf mod rewrite...
also ich habe XAMPP und keine anderen vhosts...
Apache 2.0.54 / Win 32 / PHP 5.0.4
in der .htaccess Datei steht zZ für Testzwecke nur
AuthName "Secret"
AuthType Basic
Deny from all
drinnen..
Hab mir die httpd.conf nocheinmal angesehen und bin draufgekommen, dass da mehrmals AllowOverride drinnen steht.. soll ich das überall auf all setzen?
Zitat:
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
...
#
# 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
...
<Directory "C:/Server/Apache2/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
...
<Directory "C:/Server/Apache2/manual">
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
<Files *.html>
SetHandler type-map
</Files>
SetEnvIf Request_URI ^/manual/(de|en|es|fr|ja|ko|ru)/ prefer-language=$1
RedirectMatch 301 ^/manual(?:/(de|en|es|fr|ja|ko|ru)){2,}(/.*)?$ /manual/$1$2
</Directory>
...
<Directory "D:/www/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
...
# <Directory "@exp_errordir@">
# AllowOverride None
# Options IncludesNoExec
# AddOutputFilter Includes html
# AddHandler type-map var
# Order allow,deny
# Allow from all
# LanguagePriority en cs de es fr it ja ko nl pl pt-br ro sv tr
# ForceLanguagePriority Prefer Fallback
# </Directory>
...
|
danke für die Hilfe,
mfg
Andi