Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

.htaccess

Zuletzt modifiziert: 02.04.2025, 15:02 - Dateigröße: 868.00 Bytes


01  # With Apache 2.4 the "Order, Deny" syntax has been deprecated and moved from
02  # module mod_authz_host to a new module called mod_access_compat (which may be
03  # disabled) and a new "Require" syntax has been introduced to mod_authz_core.
04  # We could just conditionally provide both versions, but unfortunately Apache
05  # does not explicitly tell us its version if the module mod_version is not
06  # available. In this case, we check for the availability of module
07  # mod_authz_core (which should be on 2.4 or higher only) as a best guess.
08  <IfModule mod_version.c>
09      <IfVersion < 2.4>
10          Order Allow,Deny
11          Deny from All
12      </IfVersion>
13      <IfVersion >= 2.4>
14          Require all denied
15      </IfVersion>
16  </IfModule>
17  <IfModule !mod_version.c>
18      <IfModule !mod_authz_core.c>
19          Order Allow,Deny
20          Deny from All
21      </IfModule>
22      <IfModule mod_authz_core.c>
23          Require all denied
24      </IfModule>
25  </IfModule>
26