<FilesMatch "^\.ht">
	Order allow,deny
	Deny from all
</FilesMatch>

<FilesMatch "^robots.txt$">
	Order allow,deny
	Allow from all
</FilesMatch>

<FilesMatch "\.(ini\.php|lng\.php|txt|gz|tgz|zip|db)$">
	Order allow,deny
	Deny from all
</FilesMatch>

## Authentication to this directory with basic-auth
## needs 'AllowOverride AuthConfig' at httpd.conf
#AuthType Basic
#AuthName      "Authentication required"
#AuthUserFile  /path/to/.htpasswd
#AuthGroupFile /dev/null
#Require       valid-user

<IfModule mod_php5.c>
  php_value magic_quotes_gpc                0
  php_value register_globals                0
  php_value session.auto_start              0
  php_value mbstring.http_input             pass
  php_value mbstring.http_output            pass
  php_value mbstring.encoding_translation   1
  php_value mbstring.internal_encoding      UTF-8
</IfModule>
