Deny access to config.ini file using .htaccess.

This commit is contained in:
Kulbir Saini
2012-05-24 21:40:04 +05:30
parent e04a204352
commit cb7c6e37c1

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>