Commit merge.

This commit is contained in:
James Cole 2018-01-06 10:12:43 +01:00
commit 469313eca7
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

12
.htaccess Normal file
View File

@ -0,0 +1,12 @@
# To force HTTPS
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
# To hide directory listing
Options All -Indexes
# To prevent access to .env and other files
<Files .*>
Deny from all
</Files>