Overview
Comment:Ajout de la config vhost en commentaire, cf. [571c5487217aaf65e27c4083f96a6f5b927b9392]
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 6539b98f9e5b2ce3197103a300e9e4b9307566e7
User & Date: bohwaz on 2018-03-12 05:16:10
Other Links: manifest | tags
Context
2018-03-20
11:05
Fix self_url utilisait www_url au lieu de admin_url check-in: de68f0e460 user: bohwaz tags: trunk, stable
2018-03-12
05:16
Ajout de la config vhost en commentaire, cf. [571c5487217aaf65e27c4083f96a6f5b927b9392] check-in: 6539b98f9e user: bohwaz tags: trunk
2018-02-21
07:48
Corrige installation des champs check-in: 14f1be0c39 user: bohwaz tags: trunk, stable
Changes

Modified src/.htaccess from [609042873e] to [2d15b5d11b].

8
9
10
11
12
13
14














	RedirectMatch 403 /plugins/
	RedirectMatch 403 /templates/
	RedirectMatch 403 /.*\.sqlite
	RedirectMatch 403 /.*\.log
	RedirectMatch 403 /(README|VERSION|COPYING)
	RedirectMatch 403 /config\.(.*)\.php
</IfModule>





















>
>
>
>
>
>
>
>
>
>
>
>
>
>
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
	RedirectMatch 403 /plugins/
	RedirectMatch 403 /templates/
	RedirectMatch 403 /.*\.sqlite
	RedirectMatch 403 /.*\.log
	RedirectMatch 403 /(README|VERSION|COPYING)
	RedirectMatch 403 /config\.(.*)\.php
</IfModule>

# Redirection dynamique, pour les installations sans vhost dédié
# Objectif: supprimer le /www/ de l'URL
# Dé-commenter les lignes suivantes pour une installation ans VHost
# Note: il est probable qu'il soit nécessaire d'adapter la configuration
# à votre hébergeur !

#<IfModule mod_rewrite.c>
#	RewriteEngine on
#	RewriteBase /
#	RewriteCond %{REQUEST_URI}::$1 ^(.*?)/(.*)::\2$
#	RewriteRule ^(.*)$ - [E=BASE:%1]
#	RewriteRule (.*) %{ENV:BASE}/www/$1 [QSA]
#</IfModule>