Opened 7 years ago
Closed 4 years ago
#535 closed enhancement (fixed)
htaccess für Verzeichnisschutz kompatibel für Apache 2.2 und 2.4, Lösung:
Reported by: | Roger Rehnelt | Owned by: | d.schmitzer |
---|---|---|---|
Priority: | blocker | Milestone: | 4.1 |
Component: | Core | Version: | 3.12 |
Keywords: | Cc: |
Description
<ifModule mod_authz_core.c> Require all denied </ifModule> # line below if for Apache 2.2 <ifModule !mod_authz_core.c> deny from all </ifModule> # section for Apache 2.2 and 2.4 IndexIgnore *
Change History (7)
comment:1 by , 7 years ago
Priority: | major → blocker |
---|
comment:2 by , 6 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 by , 4 years ago
Funktioniert nicht!
Forum-Beitrag:
https://forum.maennchen1.de/viewtopic.php?f=25&t=9985&p=60904&hilit=htaccess#p60904
apache htaccess upgrade von 2.2 auf 2.4
https://httpd.apache.org/docs/trunk/upgrading.html
comment:4 by , 4 years ago
Resolution: | fixed |
---|---|
Status: | closed → reopened |
comment:5 by , 4 years ago
comment:6 by , 4 years ago
Hab es jetzt so eingebaut:
<IfModule mod_authz_core.c> # Apache 2.4 Require all denied </IfModule> <IfModule !mod_authz_core.c> # Apache 2.2 Order allow,deny Deny from all </IfModule> # section for Apache 2.2 and 2.4 IndexIgnore *
Bitte testen. Am besten ein neues Produkt anlegen und ein Download hinterlegen, dir den Ordner anschauen und dann versuchen zuzugreifen.
comment:7 by , 4 years ago
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
Note:
See TracTickets
for help on using tickets.
Umgesetzt.