Initial project structure with Composer

This commit is contained in:
2022-07-09 12:50:24 -04:00
commit a46ba1dd4e
9 changed files with 127 additions and 0 deletions

19
.htaccess Normal file
View File

@ -0,0 +1,19 @@
Options All -Indexes
<Files .htaccess>
order allow,deny
deny from all
</Files>
<IfModule mod_rewrite.c>
# Redirect to the public folder
RewriteEngine On
# RewriteBase /
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
# Redirect to HTTPS
# RewriteEngine On
# RewriteCond %{HTTPS} off
# RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>