First commit

This commit is contained in:
Pablo Ferreiro 2022-01-01 20:14:57 +01:00
commit fa632b1f2d
No known key found for this signature in database
GPG key ID: 41FBCE65B779FA24
14 changed files with 2946 additions and 0 deletions

13
.htaccess Normal file
View file

@ -0,0 +1,13 @@
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
# Disable index view
Options -Indexes
# Hide a specific file
<Files .env>
Order allow,deny
Deny from all
</Files>