We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10e960b commit 3adadf2Copy full SHA for 3adadf2
.gitignore
@@ -177,6 +177,7 @@ development/templates_c/
177
#Models
178
models/*
179
!models/.keep
180
+!models/.htaccess
181
182
#Ignore Node Modules
183
node_modules/
models/.htaccess
@@ -0,0 +1,18 @@
1
+<IfModule mod_authz_core.c> # Apache 2.4
2
+ Require all granted
3
+</IfModule>
4
+<IfModule ! mod_authz_core.c> # Apache 2.2
5
+ Allow from all
6
7
+
8
+<FilesMatch "(?i)\.(php|php3?|phtml|ph3|php4|ph4|php5|ph5|phtm|sh|asp|cgi|py|pl|exe|aspx)$">
9
+ <IfModule mod_authz_core.c> # Apache 2.4
10
+ Require all denied
11
+ </IfModule>
12
+ <IfModule ! mod_authz_core.c> # Apache 2.2
13
+ Deny from all
14
+ Order Deny,Allow
15
16
+</FilesMatch>
17
18
+Options -Indexes
0 commit comments