Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-04-08 08:04:27 +0400
committermattab <matthieu.aubry@gmail.com>2014-04-08 08:04:27 +0400
commitae54752fd21ff379c8c42ac28ad515affcb69b0c (patch)
tree922cca8762fc1d93a26f065aca469c13f4459de3
parent4c837cf446000914059d14bd8b770f3794c51128 (diff)
Updated .htaccess refs #4941
Can you please test the latest Piwik beta and confirm whether it still bugs as you describe?
-rw-r--r--misc/user/.htaccess6
1 files changed, 6 insertions, 0 deletions
diff --git a/misc/user/.htaccess b/misc/user/.htaccess
index a4d7af8795..a1f9596321 100644
--- a/misc/user/.htaccess
+++ b/misc/user/.htaccess
@@ -1,27 +1,33 @@
<Files ~ "\.(php|php4|php5|inc|tpl|in|twig)$">
<IfModule mod_access.c>
Deny from all
+Require all denied
</IfModule>
<IfModule !mod_access_compat>
<IfModule mod_authz_host.c>
Deny from all
+Require all denied
</IfModule>
</IfModule>
<IfModule mod_access_compat>
Deny from all
+Require all denied
</IfModule>
</Files>
<Files ~ "\.(test\.php|gif|ico|jpg|png|svg|js|css|swf)$">
<IfModule mod_access.c>
Allow from all
+Require all granted
</IfModule>
<IfModule !mod_access_compat>
<IfModule mod_authz_host.c>
Allow from all
+Require all granted
</IfModule>
</IfModule>
<IfModule mod_access_compat>
Allow from all
+Require all granted
</IfModule>
Satisfy any
</Files>