'
# Block access to config file:
order allow,deny
deny from all
# Block access to tmp directory (logfiles and config) and includes directory (MySQL login):
RewriteEngine On
RewriteRule (^|/)tmp(/|$) - [F]
RewriteRule (^|/)includes(/|$) - [F]
# PHP Debugging
php_flag display_errors Off
# END Hestia Web Interface
# Uncomment to enable SSL
# RewriteCond %{HTTPS} off
# RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]