Symfony 8 SPA with Doctrine ORM, Symfony Security, vanilla JS frontend. Migrated from plain PHP (delight-im/auth + raw SQL) to full Symfony stack. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
405 B
ApacheConf
17 lines
405 B
ApacheConf
DirectoryIndex index.php
|
|
|
|
<IfModule mod_negotiation.c>
|
|
Options -MultiViews
|
|
</IfModule>
|
|
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
|
|
# Composer-Dateien sperren (liegen außerhalb public/, trotzdem sicher)
|
|
RewriteRule ^(composer\.(json|lock))$ - [F,L]
|
|
|
|
# Static files direkt ausliefern
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^ index.php [L]
|
|
</IfModule>
|