Statt Env-Var-gesteuertem Dualbetrieb (lokal /hifi, live /) läuft jetzt alles einheitlich unter der Domain-Wurzel - auch lokal (siehe neuer VirtualHost auf Port 8080 in der Apache-Konfiguration, unabhängig von Port 80 mit /hifi). Dabei einen Doppel-Slash-Bug in der Routenberechnung gefunden und behoben (base_path '/' + '/api' ergab faelschlich '//api'). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
15 lines
493 B
ApacheConf
15 lines
493 B
ApacheConf
RewriteEngine On
|
|
RewriteBase /
|
|
|
|
# API-Requests an den PHP-Front-Controller weiterleiten
|
|
RewriteCond %{REQUEST_URI} ^/api/
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^api/(.*)$ api/public/index.php [QSA,L]
|
|
|
|
# Dynamische sitemap.xml (DB-generiert)
|
|
RewriteRule ^sitemap\.xml$ api/public/sitemap.php [L]
|
|
|
|
# Alles andere: SPA-Fallback auf index.html (React Router übernimmt das Routing)
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^ index.html [QSA,L]
|