aboutsummaryrefslogtreecommitdiffhomepage
path: root/.htaccess
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2018-08-11 14:15:47 +0200
committerArthurHoaro <arthur@hoa.ro>2018-08-11 14:15:47 +0200
commite0a77f2cceba5295b04add1ab177020c8b028df5 (patch)
tree586a02a4274471e435f4de8c6427c1ce6b527d62 /.htaccess
parent32ee32517c9e999e61bda2a018c899e4b6fbd528 (diff)
parent9e3a97b36e17559e11768516749bd3f65ab971a5 (diff)
downloadShaarli-e0a77f2cceba5295b04add1ab177020c8b028df5.tar.gz
Shaarli-e0a77f2cceba5295b04add1ab177020c8b028df5.tar.zst
Shaarli-e0a77f2cceba5295b04add1ab177020c8b028df5.zip
Merge tag 'v0.10.1' into latest
Release v0.10.1
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess25
1 files changed, 25 insertions, 0 deletions
diff --git a/.htaccess b/.htaccess
index b238854c..4c004271 100644
--- a/.htaccess
+++ b/.htaccess
@@ -16,8 +16,33 @@ RewriteCond %{REQUEST_FILENAME} !-d
16RewriteRule ^ index.php [QSA,L] 16RewriteRule ^ index.php [QSA,L]
17 17
18<Limit GET POST PUT DELETE OPTIONS> 18<Limit GET POST PUT DELETE OPTIONS>
19 <IfModule version_module>
20 <IfVersion >= 2.4>
21 Require all granted
22 </IfVersion>
23 <IfVersion < 2.4>
24 Allow from all
25 Deny from none
26 </IfVersion>
27 </IfModule>
28
29 <IfModule !version_module>
19 Require all granted 30 Require all granted
31 </IfModule>
20</Limit> 32</Limit>
33
21<LimitExcept GET POST PUT DELETE OPTIONS> 34<LimitExcept GET POST PUT DELETE OPTIONS>
35 <IfModule version_module>
36 <IfVersion >= 2.4>
37 Require all denied
38 </IfVersion>
39 <IfVersion < 2.4>
40 Allow from none
41 Deny from all
42 </IfVersion>
43 </IfModule>
44
45 <IfModule !version_module>
22 Require all denied 46 Require all denied
47 </IfModule>
23</LimitExcept> 48</LimitExcept>