Overview
Comment:Ajout désactivation de DirectoryIndex pour contourner bug avec FallbackResource
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA1: a38560eefe3727631be03f461241c1fe147c5f25
User & Date: bohwaz on 2018-11-28 21:03:55
Other Links: manifest | tags
Context
2018-11-29
17:01
Changement de mot de passe sans envoyer de mot de passe par email check-in: 0ae042cdc2 user: bohwaz tags: trunk, stable
2018-11-28
21:03
Ajout désactivation de DirectoryIndex pour contourner bug avec FallbackResource check-in: a38560eefe user: bohwaz tags: trunk, stable
21:02
Correctif recherche avancée check-in: bfe170eb47 user: bohwaz tags: trunk, stable
Changes

Modified src/www/.htaccess from [8c789141ef] to [da372037a9].

1

2
3
4



5
6
7
8
9
10
11
Options -MultiViews -Indexes

DirectoryIndex index.php

# FallbackResource n'est dispo que depuis Apache 2.2.16, soit Debian Wheezy (2013)



<IfModule mod_version.c>
	<IfVersion >= 2.2.16>
		FallbackResource /_route.php
	</IfVersion>
</IfModule>

ErrorDocument 404 /_route.php

>



>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Options -MultiViews -Indexes
DirectoryIndex disabled
DirectoryIndex index.php

# FallbackResource n'est dispo que depuis Apache 2.2.16, soit Debian Wheezy (2013)
# Mais bugue avant Apache 2.4.15, il faut donc bien désactiver le DirectoryIndex
# cf. https://bz.apache.org/bugzilla/show_bug.cgi?id=58292
# et https://serverfault.com/questions/559067/apache-hangs-for-five-seconds-with-fallbackresource-when-accessing
<IfModule mod_version.c>
	<IfVersion >= 2.2.16>
		FallbackResource /_route.php
	</IfVersion>
</IfModule>

ErrorDocument 404 /_route.php