aboutsummaryrefslogtreecommitdiffhomepage
path: root/data/.htaccess
blob: 1d49da37a072dea22d567d4326563a7a07bf4534 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<IfModule version_module>
  <IfVersion >= 2.4>
    Require all denied
    <Files "user.css">
      Require all granted
    </Files>
  </IfVersion>
  <IfVersion < 2.4>
    Allow from none
    Deny from all
    <Files "user.css">
      Allow from all
    </Files>
  </IfVersion>
</IfModule>

<IfModule !version_module>
    Require all denied
</IfModule>