Options -Indexes
DirectoryIndex index.php

<FilesMatch "config\.php$">
    Order allow,deny
    Deny from all
</FilesMatch>

# Protect includes directory
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^includes/ - [F,L]
</IfModule>

# Set upload limits
<IfModule mod_php.c>
    php_value upload_max_filesize 10M
    php_value post_max_size 20M
    php_value max_file_uploads 20
</IfModule>
