Skip to content

Commit

Permalink
.htaccess
Browse files Browse the repository at this point in the history
  • Loading branch information
abdumu committed Jan 8, 2018
1 parent 7f4a4f6 commit 759e748
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
25 changes: 25 additions & 0 deletions uploads/.htaccess
@@ -0,0 +1,25 @@
# Htaccess for Protection
# Kleeja 2007 - 2010
# $Id: .htaccess 1557 2010-08-08 10:09:50Z saanina $

<Files ~ "^.*\.(php|php*|cgi|pl|phtml|shtml|sql|asp|aspx)">
Order allow,deny
Deny from all
</Files>

#Disable PHP engine in this folder
<IfModule mod_php4.c>
php_flag engine off
</IfModule>

#Disable PHP engine in this folder
<IfModule mod_php5.c>
php_flag engine off
</IfModule>

#Don't handle those types in this folder
RemoveType .php .php* .phtml .pl .cgi .asp .aspx .sql

#404 error should show something usefull
#todo/ images->image info, another show our info page
ErrorDocument 404 ../images/not_exists.jpg
11 changes: 11 additions & 0 deletions uploads/thumbs/.htaccess
@@ -0,0 +1,11 @@
<Files ~ "^.*\.(php|php*|cgi|pl|phtml|shtml|sql|asp|aspx)">
Order allow,deny
Deny from all
</Files>
<IfModule mod_php4.c>
php_flag engine off
</IfModule>
<IfModule mod_php5.c>
php_flag engine off
</IfModule>
RemoveType .php .php* .phtml .pl .cgi .asp .aspx .sql

0 comments on commit 759e748

Please sign in to comment.