# Enable PHP execution
<IfModule mod_php.c>
    AddType application/x-httpd-php .php
</IfModule>

# Set index.php as default file
DirectoryIndex index.php index.html index.htm

# Disable directory listing
Options -Indexes

# Enable mod_rewrite
<IfModule mod_rewrite.c>
    RewriteEngine On
</IfModule>
