Merge pull request #18 from kulbirsaini/kulbirsaini

Deny access to config.ini file using .htaccess.
This commit is contained in:
Klaus Silveira
2012-05-24 10:27:58 -07:00

View File

@@ -4,4 +4,8 @@
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
</IfModule>
<Files config.ini>
order allow,deny
deny from all
</Files>