Overview
Comment:Protéger l'accès à plus de choses en cas d'utilisation sans sous-domaine
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: d40d2d6ef755d75193a5c9c5086e13f17ea17639
User & Date: bohwaz on 2017-01-25 22:48:58
Other Links: manifest | tags
References
2020-12-08
23:25 Wiki page "Changelog/0.9" artifact: b9c916b4d1 user: bohwaz
Context
2017-03-12
21:14
Correction bug où certains ID membres ne sont pas vus comme integer quand on a joué avec les numéros de membres check-in: 8d89f787d5 user: bohwaz tags: trunk, stable
2017-01-25
22:48
Protéger l'accès à plus de choses en cas d'utilisation sans sous-domaine check-in: d40d2d6ef7 user: bohwaz tags: trunk
22:20
Correction bug restauration signalé par @Boris (erreur d'utilisateur non admin même quand il est admin) check-in: 13d759716c user: bohwaz tags: trunk, stable
Changes

Modified src/.htaccess from [a73862be8a] to [4336f57b39].

1
2
3
4
5
6



7
<IfModule mod_alias.c>
    RedirectMatch 403 /include/
    RedirectMatch 403 /cache/
    RedirectMatch 403 /plugins/
    RedirectMatch 403 /templates/
    RedirectMatch 403 /*.sqlite



</IfModule>





|
>
>
>

1
2
3
4
5
6
7
8
9
10
<IfModule mod_alias.c>
    RedirectMatch 403 /include/
    RedirectMatch 403 /cache/
    RedirectMatch 403 /plugins/
    RedirectMatch 403 /templates/
    RedirectMatch 403 /.*\.sqlite
    RedirectMatch 403 /.*\.log
    RedirectMatch 403 /(README|VERSION|COPYING)
	RedirectMatch 403 /config\.(.*)\.php
</IfModule>