aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/.htaccess
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2016-12-18 12:40:27 +0100
committerArthurHoaro <arthur@hoa.ro>2016-12-18 12:40:27 +0100
commit8147ff76a49206a08999f420206d971de10db12e (patch)
treedea3412c8e30cfab464557bcbe4c5c3fb08bc33e /application/.htaccess
parent9eba6ff469bdea8f341af06ef23c8bb4bd3a6869 (diff)
parente3ffc8fdee30be41046b985fe6e7034fb580b0c8 (diff)
downloadShaarli-8147ff76a49206a08999f420206d971de10db12e.tar.gz
Shaarli-8147ff76a49206a08999f420206d971de10db12e.tar.zst
Shaarli-8147ff76a49206a08999f420206d971de10db12e.zip
merge
Diffstat (limited to 'application/.htaccess')
-rw-r--r--application/.htaccess15
1 files changed, 13 insertions, 2 deletions
diff --git a/application/.htaccess b/application/.htaccess
index b584d98c..f601c1ee 100644
--- a/application/.htaccess
+++ b/application/.htaccess
@@ -1,2 +1,13 @@
1Allow from none 1<IfModule version_module>
2Deny from all 2 <IfVersion >= 2.4>
3 Require all denied
4 </IfVersion>
5 <IfVersion < 2.4>
6 Allow from none
7 Deny from all
8 </IfVersion>
9</IfModule>
10
11<IfModule !version_module>
12 Require all denied
13</IfModule>